diff options
author | Alan Pearce | 2015-04-05 15:56:54 +0100 |
---|---|---|
committer | Alan Pearce | 2015-04-05 15:58:57 +0100 |
commit | d06ed0b1f4cc014c72d338f3578326e10cc12212 (patch) | |
tree | cd720be528af7b8b51e15eeeedebd6914b07542f /src/Application.php | |
download | ynab-ledger-d06ed0b1f4cc014c72d338f3578326e10cc12212.tar.lz ynab-ledger-d06ed0b1f4cc014c72d338f3578326e10cc12212.tar.zst ynab-ledger-d06ed0b1f4cc014c72d338f3578326e10cc12212.zip |
Initial commit (Scaffolding)
Diffstat (limited to 'src/Application.php')
-rw-r--r-- | src/Application.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Application.php b/src/Application.php new file mode 100644 index 0000000..9413acb --- /dev/null +++ b/src/Application.php @@ -0,0 +1,11 @@ +<?php + +namespace YnabLedger; + +use CLIFramework\Application as BaseApplication; + +class Application extends BaseApplication { + public function init () { + parent::init(); + } +} |