41 lines
1.0 KiB
PHP
41 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace Webman\Console\Commands;
|
|
|
|
use Symfony\Component\Console\Command\Command;
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
|
|
|
|
class InstallCommand extends Command
|
|
{
|
|
protected static $defaultName = 'install';
|
|
protected static $defaultDescription = 'Execute webman installation script';
|
|
|
|
/**
|
|
* @return void
|
|
*/
|
|
protected function configure()
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
* @param InputInterface $input
|
|
* @param OutputInterface $output
|
|
* @return int
|
|
*/
|
|
protected function execute(InputInterface $input, OutputInterface $output): int
|
|
{
|
|
$output->writeln("Execute installation for webman");
|
|
$install_function = "\\Webman\\Install::install";
|
|
if (is_callable($install_function)) {
|
|
$install_function();
|
|
return self::SUCCESS;
|
|
}
|
|
$output->writeln('<error>This command requires webman-framework version >= 1.3.0</error>');
|
|
return self::FAILURE;
|
|
}
|
|
|
|
}
|