phprs\util\AnnotationCleaner::stateAntSL PHP Method

stateAntSL() private method

单行注释
private stateAntSL ( )
    private function stateAntSL()
    {
        $pos = strpos($this->tmp, "\n");
        if ($pos) {
            $this->tmp = substr($this->tmp, $pos);
        } else {
            $this->tmp = '';
        }
        return 'stateNormal';
    }