for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace AlecRabbit\Spinner\Core\Adapters;
use AlecRabbit\Spinner\Core\Contracts\SpinnerOutputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class SymfonyOutputAdapter implements SpinnerOutputInterface
{
/** @var OutputInterface */
protected $output;
public function __construct(OutputInterface $output)
$this->output = $output;
}
public function write($messages, $newline = false, $options = 0): void
$this->output->write($messages, $newline, $options);