Contao\CoreBundle\Analyzer\HtaccessAnalyzer::isComment PHP Method

isComment() private method

Checks whether a line is a comment.
private isComment ( string $line ) : boolean
$line string
return boolean
    private function isComment($line)
    {
        return 0 === strncmp('#', ltrim($line), 1);
    }