ServerCommand
class
ServerCommand extends Command
Methods
protected
|
|
configure()
|
No description
|
|
protected
|
|
execute(InputInterface $input, OutputInterface $output)
|
No description
|
|
Details
execute()
protected execute(InputInterface $input, OutputInterface $output)
Parameters
InputInterface |
$input |
|
OutputInterface |
$output |
|
Source code
<?php
namespace Command;
use Symfony\Component\Console\Command\Command as Comando;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Input\InputArgument;
use Command\KhanCommand as KhanCommand;
class ServerCommand extends Comando {
protected function configure(){
$this->setName('server')
->addArgument('porta', InputArgument::OPTIONAL, 'Em qual porta deseja o servidor?')
->setDescription('Listeng server in project.')
->setHelp('Listen web server in application...');
}
protected function execute(InputInterface $input, OutputInterface $output){
$porta = ($input->getArgument('porta')) ? $input->getArgument('porta') : 8080;
$site = "http://localhost:{$porta}";
$output->write("Servidor ativo em <info>{$site}</info>");
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
KhanCommand::shell('start chrome "'.$site.'"');
}
KhanCommand::shell("php -S 0.0.0.0:{$porta} public/index.php");
}
}