Files
hehe/vendor/league/climate/src/Util/Writer/StdOut.php
T
2018-08-01 16:00:05 +02:00

17 lines
266 B
PHP

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