Piwik\API\DocumentationGenerator::checkIfCommentContainsInternalAnnotation PHP Method

checkIfCommentContainsInternalAnnotation() private method

Check if Class contains @internal
private checkIfCommentContainsInternalAnnotation ( ReflectionClas\ReflectionClass | ReflectionMethod $rClass ) : boolean
$rClass ReflectionClas\ReflectionClass | ReflectionMethod instance of ReflectionMethod
return boolean
    private function checkIfCommentContainsInternalAnnotation($rClass)
    {
        return false !== strstr($rClass->getDocComment(), '@internal');
    }