Your IP : 216.73.216.43


Current Path : /var/www/www.indacotrentino.com/www/vendor/phpmd/phpmd/src/main/php/PHPMD/Console/
Upload File :
Current File : /var/www/www.indacotrentino.com/www/vendor/phpmd/phpmd/src/main/php/PHPMD/Console/StreamOutput.php

<?php

namespace PHPMD\Console;

class StreamOutput extends Output
{
    /** @var resource */
    private $stream;

    /**
     * @param resource $stream
     */
    public function __construct($stream, $verbosity = self::VERBOSITY_NORMAL)
    {
        parent::__construct($verbosity);
        $this->stream = $stream;
    }

    /**
     * @inheritDoc
     */
    protected function doWrite($message)
    {
        fwrite($this->stream, $message);
    }
}