13 lines
241 B
Text
13 lines
241 B
Text
|
#!/usr/bin/env php
|
||
|
<?php
|
||
|
|
||
|
namespace DSiepmann;
|
||
|
|
||
|
require __DIR__ . '/vendor/autoload.php';
|
||
|
|
||
|
use Symfony\Component\Console\Application;
|
||
|
|
||
|
$application = new Application();
|
||
|
$application->add(new Command\FakeMysqlCommand());
|
||
|
$application->run();
|