1
0
mirror of https://github.com/flarum/core.git synced 2025-10-27 05:31:29 +01:00

Restructure Flarum\Console namespace

This commit is contained in:
Franz Liedke
2017-06-24 11:29:44 +02:00
parent 9b24fbd5e5
commit c6985ae31c
7 changed files with 8 additions and 7 deletions

View File

@@ -0,0 +1,66 @@
<?php
/*
* This file is part of Flarum.
*
* (c) Toby Zerner <toby.zerner@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Flarum\Console;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
abstract class AbstractCommand extends Command
{
/**
* @var InputInterface
*/
protected $input;
/**
* @var OutputInterface
*/
protected $output;
/**
* {@inheritdoc}
*/
protected function execute(InputInterface $input, OutputInterface $output)
{
$this->input = $input;
$this->output = $output;
$this->fire();
}
/**
* Fire the command.
*/
abstract protected function fire();
/**
* Did the user pass the given option?
*
* @param string $name
* @return bool
*/
protected function hasOption($name)
{
return $this->input->hasOption($name);
}
/**
* Send an info string to the user.
*
* @param string $string
*/
protected function info($string)
{
$this->output->writeln("<info>$string</info>");
}
}