for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of the phpspec-console package.
* (c) 2017 Timo Michna <timomichna/yahoo.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Tidal\PhpSpec\ConsoleExtension\Behavior\Command;
use Symfony\Component\Console\Output\OutputInterface;
* Trait Tidal\PhpSpec\ConsoleExtension\Behavior\Command\HasOutputTrait */
trait HasOutputTrait
{
* @var OutputInterface
protected $output;
* @param OutputInterface $output
public function setOutput(OutputInterface $output)
$this->output = $output;
}
* @return OutputInterface
public function getOutput(): OutputInterface
return $this->output;