mirror of
https://github.com/ramsey/uuid.git
synced 2026-06-14 15:56:48 +03:00
15 lines
260 B
PHP
15 lines
260 B
PHP
<?php
|
|
namespace Rhumsaa\Uuid\Console\Util;
|
|
|
|
use Symfony\Component\Console\Output\Output;
|
|
|
|
class TestOutput extends Output
|
|
{
|
|
public $messages = array();
|
|
|
|
protected function doWrite($message, $newline)
|
|
{
|
|
$this->messages[] = $message;
|
|
}
|
|
}
|