mirror of
https://github.com/danog/psalm.git
synced 2024-11-26 12:24:49 +01:00
b2c0993cdc
Ref #611
13 lines
207 B
PHP
13 lines
207 B
PHP
<?php
|
|
namespace Psalm\Tests\Progress;
|
|
|
|
use Psalm\Progress\DefaultProgress;
|
|
|
|
class EchoProgress extends DefaultProgress
|
|
{
|
|
public function write(string $message): void
|
|
{
|
|
echo $message;
|
|
}
|
|
}
|