first commit
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
<?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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user