mirror of
https://github.com/danog/Valinor.git
synced 2024-11-27 04:34:48 +01:00
21 lines
293 B
PHP
21 lines
293 B
PHP
<?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';
|
|
}
|
|
}
|