Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- <?php
-
- require __DIR__ . '/vendor/autoload.php';
-
- $app = \Framework\App::getInstance();
- $app->bind('paths.base', fn() => __DIR__);
- $app->prepare();
-
- $console = new \Symfony\Component\Console\Application();
-
- $commands = require __DIR__ . '/app/commands.php';
-
- foreach ($commands as $command) {
- $console->add(new $command);
- }
-
- $console->run();
|