about summary refs log tree commit diff stats
path: root/src/Application.php
blob: bc013267a4e6d728c1d94d88e3ed19e8dfc81a7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

namespace YnabLedger;

use CLIFramework\Application as BaseApplication;

class Application extends BaseApplication {
    public function init () {
        parent::init();
        $this->command('convert');
    }
}