for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yarak\Output;
abstract class Output
{
/**
* Write a message.
*
* @param string $message
*/
abstract public function write($message);
* Write an info message.
public function writeInfo($message)
$this->write("<info>{$message}</info>");
}
* Write an error message.
public function writeError($message)
$this->write("<error>{$message}</error>");
* Write a comment message.
public function writeComment($message)
$this->write("<comment>{$message}</comment>");