mirror of
https://github.com/danog/Valinor.git
synced 2025-01-09 14:18:33 +01:00
16 lines
267 B
PHP
16 lines
267 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace CuyZ\Valinor\Tests\Fake\Mapper\Tree\Message;
|
||
|
|
||
|
use CuyZ\Valinor\Mapper\Tree\Message\Message;
|
||
|
|
||
|
final class FakeMessage implements Message
|
||
|
{
|
||
|
public function __toString(): string
|
||
|
{
|
||
|
return 'some message';
|
||
|
}
|
||
|
}
|