Files
comunic/developer/vendor/league/climate/src/Util/Writer/StdErr.php
Pierre Hubert 990540b2b9 First commit
2016-11-19 12:08:12 +01:00

17 lines
266 B
PHP

<?php
namespace League\CLImate\Util\Writer;
class StdErr implements WriterInterface
{
/**
* Write the content to the stream
*
* @param string $content
*/
public function write($content)
{
fwrite(\STDERR, $content);
}
}