for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/*
* This file is part of the Packagist Mirror.
*
* For the full license information, please view the LICENSE.md
* file that was distributed with this source code.
*/
namespace Webs\Mirror;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
/**
* Trait to gzip operations.
* @author Webysther Nunes <[email protected]>
trait Console
{
* @var InputInterface
protected $input;
* @var OutputInterface
protected $output;
* {@inheritdoc}
public function setConsole(InputInterface $input, OutputInterface $output):void
$this->input = $input;
$this->output = $output;
}