Valinor/tests/Fixture/Object/InterfaceWithDifferentNamespaces/B/ClassThatInheritsInterfaceB.php

13 lines
290 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 ClassThatInheritsInterfaceB implements InterfaceB
{
public string $value;
}