Init: add code scaffolding
This commit is contained in:
11
console.php
Normal file
11
console.php
Normal file
@ -0,0 +1,11 @@
|
||||
#!/usr/bin/env php
|
||||
<?php
|
||||
|
||||
require __DIR__ . '/vendor/autoload.php';
|
||||
|
||||
use Symfony\Component\Console\Application;
|
||||
|
||||
$application = new Application();
|
||||
$application->add(new \App\ExchangeCardsCommand());
|
||||
|
||||
$application->run();
|
Reference in New Issue
Block a user