Valinor/tests/Fixture/Object/InterfaceWithDifferentNamespaces/A/OtherClassThatInheritsInterfaceA.php

13 lines
295 B
PHP

<?php
declare(strict_types=1);
namespace CuyZ\Valinor\Tests\Fixture\Object\InterfaceWithDifferentNamespaces\A;
use CuyZ\Valinor\Tests\Fixture\Object\InterfaceWithDifferentNamespaces\InterfaceA;
final class OtherClassThatInheritsInterfaceA implements InterfaceA
{
public string $value;
}