mirror of
https://github.com/danog/psalm.git
synced 2024-12-04 10:38:49 +01:00
13 lines
210 B
PHP
13 lines
210 B
PHP
|
<?php
|
||
|
namespace Psalm\Tests\Progress;
|
||
|
|
||
|
use Psalm\Progress\DefaultProgress;
|
||
|
|
||
|
class EchoProgress extends DefaultProgress
|
||
|
{
|
||
|
protected function write(string $message): void
|
||
|
{
|
||
|
echo $message;
|
||
|
}
|
||
|
}
|