Skip to content

Commit

Permalink
correcting examples in cli
Browse files Browse the repository at this point in the history
  • Loading branch information
niden committed Jul 23, 2024
1 parent 469dda1 commit 5745d87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/application-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ As seen above, the entry point of our CLI application is the `cli.php`. In that
declare(strict_types=1);

use Exception;
use Phalcon\Autoload\Loader;
use Phalcon\Cli\Console;
use Phalcon\Cli\Dispatcher;
use Phalcon\Cli\Console\Exception as PhalconException;
use Phalcon\Di\FactoryDefault\Cli as CliDI;
use Phalcon\Loader\Loader;
use Throwable;

$loader = new Loader();
Expand Down Expand Up @@ -389,11 +389,11 @@ declare(strict_types=1);
use Exception;
use MyApp\Modules\Backend\Module as BackendModule;
use MyApp\Modules\Frontend\Module as FrontendModule;
use Phalcon\Autoload\Loader;
use Phalcon\Cli\Console;
use Phalcon\Cli\Dispatcher;
use Phalcon\Di\FactoryDefault\Cli as CliDI;
use Phalcon\Exception as PhalconException;
use Phalcon\Loader\Loader;
use Throwable;

$loader = new Loader();
Expand Down

0 comments on commit 5745d87

Please sign in to comment.