mirror of
https://github.com/danog/Valinor.git
synced 2025-01-10 22:59:04 +01:00
13 lines
295 B
PHP
13 lines
295 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace CuyZ\Valinor\Tests\Fixture\Object\InterfaceWithDifferentNamespaces\B;
|
||
|
|
||
|
use CuyZ\Valinor\Tests\Fixture\Object\InterfaceWithDifferentNamespaces\InterfaceB;
|
||
|
|
||
|
final class OtherClassThatInheritsInterfaceB implements InterfaceB
|
||
|
{
|
||
|
public string $value;
|
||
|
}
|