-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
09cb2f5
commit 1fd53cb
Showing
3 changed files
with
12 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,9 @@ | ||
#!/usr/bin/env php | ||
<?php | ||
|
||
require __DIR__ . '/vendor/autoload.php'; | ||
|
||
use SebaCarrasco93\KaataaCore\Console\Commands\CreateKataCommand; | ||
use SebaCarrasco93\KaataaCore\Console\Commands\MakeClassCommand; | ||
use SebaCarrasco93\KaataaCore\Console\Commands\MakeTestCommand; | ||
use Symfony\Component\Console\Application; | ||
use SebaCarrasco93\KaataaCore\Console\Dojo; | ||
|
||
$application = new Application(); | ||
|
||
$application->add(new CreateKataCommand()); | ||
$application->add(new MakeClassCommand()); | ||
$application->add(new MakeTestCommand()); | ||
require __DIR__ . '/vendor/autoload.php'; | ||
|
||
$application->run(); | ||
// 🥋 Start | ||
Dojo::start(); |