(PHP 5, PHP 7)
ReflectionParameter::getDeclaringClass — Gets declaring class
Gets the declaring class.
Esta função não está documentada; somente a lista de argumentos está disponível.
Esta função não possui parâmetros.
A ReflectionClass object.
Exemplo #1 Getting the class that declared the method
<?php
class Foo
{
public function bar(\DateTime $datetime)
{
}
}
class Baz extends Foo
{
}
$param = new \ReflectionParameter(['Baz', 'bar'], 0);
var_dump($param->getDeclaringClass());
O exemplo acima irá imprimir:
object(ReflectionClass)#2 (1) { ["name"]=> string(3) "Foo" }