first commit
This commit is contained in:
35
vendor/webman/console/src/Commands/StatusCommand.php
vendored
Normal file
35
vendor/webman/console/src/Commands/StatusCommand.php
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
<?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 StatusCommand extends Command
|
||||
{
|
||||
protected static $defaultName = 'status';
|
||||
protected static $defaultDescription = 'Get worker status. Use mode -d to show live status.';
|
||||
|
||||
protected function configure() : void
|
||||
{
|
||||
$this->addOption('live', 'd', InputOption::VALUE_NONE, 'show live status');
|
||||
}
|
||||
|
||||
/**
|
||||
* @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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user