. */ namespace Doctrine\Common\Cli\Printers; use Doctrine\Common\Cli\Style; /** * CLI Output Printer for Normal terminal * * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @link www.doctrine-project.org * @since 2.0 * @version $Revision$ * @author Guilherme Blanco * @author Jonathan Wage * @author Roman Borschel */ class NormalPrinter extends AbstractPrinter { /** * @inheritdoc */ public function format($message, $style) { return $message; } }