ReflectionParameter
PHP Manual

ReflectionParameter::getDeclaringClass

(PHP 5, PHP 7)

ReflectionParameter::getDeclaringClassGets declaring class

Descrição

public ReflectionClass ReflectionParameter::getDeclaringClass ( void )

Gets the declaring class.

Aviso

Esta função não está documentada; somente a lista de argumentos está disponível.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

A ReflectionClass object.

Exemplos

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"
}

Veja Também


ReflectionParameter
PHP Manual