1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
<?php
/**
* Test: Nette\Utils\Reflection::getPropertyDeclaringClass + doccomment workaround
*/
declare(strict_types=1);
use Nette\Utils\Reflection;
use Tester\Assert;
require __DIR__ . '/../bootstrap.php';
trait A
{
/** a */
protected $foo;
}
trait B
{
use A;
/** b */
protected $foo;
}
class C
{
use B;
/** c */
protected $foo;
}
class D extends C
{
/** d */
protected $foo;
}
// Property in class
Assert::same('D', Reflection::getPropertyDeclaringClass(new ReflectionProperty('D', 'foo'))->getName());
// Property in class
Assert::same('C', Reflection::getPropertyDeclaringClass(new ReflectionProperty('C', 'foo'))->getName());
// Property in trait
Assert::same('B', Reflection::getPropertyDeclaringClass(new ReflectionProperty('B', 'foo'))->getName());
// Property in trait
Assert::same('A', Reflection::getPropertyDeclaringClass(new ReflectionProperty('A', 'foo'))->getName());
|