DbPatch_Core_Writer::output PHP Метод

output() публичный Метод

Outputs a message to the console
public output ( string $message = '', resource $stream = null ) : DbPatch_Core_Writer
$message string
$stream resource OPTIONAL, writes to standard output by default
Результат DbPatch_Core_Writer
    public function output($message = '', $stream = null)
    {
        if ($stream === null) {
            $stream = STDOUT;
        }
        fwrite($stream, $message);
        return $this;
    }