Add initial command
This commit is contained in:
parent
adf4d2e0e3
commit
1907dde82f
1 changed files with 14 additions and 0 deletions
14
versa
Executable file
14
versa
Executable file
|
@ -0,0 +1,14 @@
|
||||||
|
#!/usr/bin/env php
|
||||||
|
|
||||||
|
<?php
|
||||||
|
require __DIR__.'/vendor/autoload.php';
|
||||||
|
|
||||||
|
use Symfony\Component\Console\SingleCommandApplication;
|
||||||
|
|
||||||
|
$application = new SingleCommandApplication();
|
||||||
|
|
||||||
|
$application->setCode(function (): int {
|
||||||
|
return 0;
|
||||||
|
});
|
||||||
|
|
||||||
|
$application->run();
|
Reference in a new issue