PHPSpec2\Loader\SpecificationsClassLoader::lineIsInsideMethod PHP Method

lineIsInsideMethod() private method

private lineIsInsideMethod ( $line, ReflectionMethod $method )
$method ReflectionMethod
    private function lineIsInsideMethod($line, ReflectionMethod $method)
    {
        return $line >= $method->getStartLine() && $line <= $method->getEndLine();
    }