2010-04-08 08:03:04 +04:00
|
|
|
<?php
|
|
|
|
|
2010-08-23 10:21:41 +04:00
|
|
|
namespace Symfony\Component\Console\Output;
|
2010-04-08 08:03:04 +04:00
|
|
|
|
|
|
|
/*
|
2010-10-30 15:24:50 +04:00
|
|
|
* This file is part of the Symfony framework.
|
2010-04-08 08:03:04 +04:00
|
|
|
*
|
|
|
|
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
|
|
|
|
*
|
|
|
|
* This source file is subject to the MIT license that is bundled
|
|
|
|
* with this source code in the file LICENSE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* NullOutput suppresses all output.
|
|
|
|
*
|
|
|
|
* $output = new NullOutput();
|
|
|
|
*
|
2010-10-30 15:24:50 +04:00
|
|
|
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
|
2010-04-08 08:03:04 +04:00
|
|
|
*/
|
|
|
|
class NullOutput extends Output
|
|
|
|
{
|
2010-10-30 15:24:50 +04:00
|
|
|
/**
|
|
|
|
* Writes a message to the output.
|
|
|
|
*
|
|
|
|
* @param string $message A message to write to the output
|
|
|
|
* @param Boolean $newline Whether to add a newline or not
|
|
|
|
*/
|
|
|
|
public function doWrite($message, $newline)
|
|
|
|
{
|
|
|
|
}
|
2010-04-08 08:03:04 +04:00
|
|
|
}
|