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\OutputInterface;
abstract class AbstractOutputAdapter implements OutputInterface
{
/** {@inheritDoc} */
public function writeln($messages, $options = 0): void
$this->write($messages, true, $options);
}