Valinor/tests/Fake/FakeReflector.php

21 lines
293 B
PHP
Raw Normal View History

2021-11-28 17:43:02 +01:00
<?php
declare(strict_types=1);
namespace CuyZ\Valinor\Tests\Fake;
use Reflector;
final class FakeReflector implements Reflector
{
public static function export(): ?string
{
return 'fake';
}
public function __toString(): string
{
return 'fake';
}
}