We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52ac4d1 commit 9278591Copy full SHA for 9278591
bin/devnet
@@ -3,10 +3,9 @@
3
4
require __DIR__ . '/../../../../vendor/autoload.php';
5
6
-use DevNet\System\Runtime\Launcher;
+use DevNet\Cli\Program;
7
8
-$launcher = Launcher::getLauncher();
9
-$launcher->workspace(getcwd());
10
-$launcher->namespace('DevNet\\Cli');
11
-$launcher->entryPoint('Program');
12
-$launcher->launch();
+$args = $GLOBALS['argv'];
+array_shift($args);
+
+Program::main($args);
0 commit comments