1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-02 17:52:45 +01:00
psalm/tests/Progress/EchoProgress.php

16 lines
234 B
PHP
Raw Normal View History

<?php
2023-10-19 13:12:06 +02:00
declare(strict_types=1);
namespace Psalm\Tests\Progress;
use Psalm\Progress\DefaultProgress;
class EchoProgress extends DefaultProgress
{
public function write(string $message): void
{
echo $message;
}
}