BetterReflection\Reflection\ReflectionClass::getEndLine PHP Method

getEndLine() public method

Get the line number that this class ends on.
public getEndLine ( ) : integer
return integer
    public function getEndLine()
    {
        return (int) $this->node->getAttribute('endLine', -1);
    }

Usage Example

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