BetterReflection\Reflection\ReflectionClass::getConstructor PHP Method

getConstructor() public method

Get the constructor method for this class.
public getConstructor ( ) : BetterReflection\Reflection\ReflectionMethod
return BetterReflection\Reflection\ReflectionMethod
    public function getConstructor()
    {
        return $this->getMethod('__construct');
    }

Usage Example

 /**
  * {@inheritDoc}
  */
 public function getConstructor()
 {
     return new ReflectionMethod($this->betterReflectionClass->getConstructor());
 }