Valinor/tests/Fixture/Object/InterfaceWithDifferentNamespaces/ClassWithBothInterfaces.php

13 lines
205 B
PHP

<?php
declare(strict_types=1);
namespace CuyZ\Valinor\Tests\Fixture\Object\InterfaceWithDifferentNamespaces;
final class ClassWithBothInterfaces
{
public InterfaceA $a;
public InterfaceB $b;
}