mirror of
https://github.com/pierre42100/comunic
synced 2025-06-22 18:15:20 +00:00
17 lines
266 B
PHP
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);
|
|
}
|
|
}
|