mirror of
https://github.com/pierre42100/comunic
synced 2025-06-23 02:25:18 +00:00
First commit
This commit is contained in:
16
developer/vendor/league/climate/src/Util/Writer/StdErr.php
vendored
Normal file
16
developer/vendor/league/climate/src/Util/Writer/StdErr.php
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
<?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);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user