Skip to content

Commit

Permalink
edit
Browse files Browse the repository at this point in the history
  • Loading branch information
fireqong committed Dec 6, 2016
1 parent 3b53b58 commit b8af684
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 18 deletions.
34 changes: 17 additions & 17 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion console
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@
<?php
// application.php

define('APP_PATH', dirname(__FILE__) . '/app');
define('APP_PATH', dirname(__FILE__) . '/Application');

require __DIR__.'/vendor/autoload.php';

use church\GenerateController;
use church\GenerateModel;
use church\GeneratePlugin;
use church\Check;
use Symfony\Component\Console\Application;

$application = new Application();
Expand All @@ -17,5 +18,6 @@ $application = new Application();
$application->add(new GenerateController());
$application->add(new GenerateModel());
$application->add(new GeneratePlugin());
$application->add(new Check());

$application->run();

0 comments on commit b8af684

Please sign in to comment.