36 lines
1000 B
PHP
36 lines
1000 B
PHP
<?php
|
|
|
|
namespace Webman\Console\Commands;
|
|
|
|
use Symfony\Component\Console\Command\Command;
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
use Symfony\Component\Console\Input\InputOption;
|
|
use Webman\Console\Application;
|
|
|
|
class StartCommand extends Command
|
|
{
|
|
protected static $defaultName = 'start';
|
|
protected static $defaultDescription = 'Start worker in DEBUG mode. Use mode -d to start in DAEMON mode.';
|
|
|
|
protected function configure() : void
|
|
{
|
|
$this->addOption('daemon', 'd', InputOption::VALUE_NONE, 'DAEMON mode');
|
|
}
|
|
|
|
/**
|
|
* @param InputInterface $input
|
|
* @param OutputInterface $output
|
|
* @return int
|
|
*/
|
|
protected function execute(InputInterface $input, OutputInterface $output): int
|
|
{
|
|
if (\class_exists(\Support\App::class)) {
|
|
\Support\App::run();
|
|
return self::SUCCESS;
|
|
}
|
|
Application::run();
|
|
return self::SUCCESS;
|
|
}
|
|
}
|