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