mirror of
https://github.com/danog/Valinor.git
synced 2025-01-10 22:59:04 +01:00
17 lines
345 B
PHP
17 lines
345 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace CuyZ\Valinor\Tests\Fake\Mapper\Tree\Message;
|
||
|
|
||
|
use CuyZ\Valinor\Mapper\Tree\Message\NodeMessage;
|
||
|
use CuyZ\Valinor\Tests\Fake\Mapper\FakeShell;
|
||
|
|
||
|
final class FakeNodeMessage
|
||
|
{
|
||
|
public static function any(): NodeMessage
|
||
|
{
|
||
|
return new NodeMessage(FakeShell::any(), new FakeMessage());
|
||
|
}
|
||
|
}
|