PHPCfg\Op::getLine PHP 메소드

getLine() 공개 메소드

public getLine ( )
    public function getLine()
    {
        return $this->getAttribute('startLine', -1);
    }

Usage Example

예제 #1
0
파일: Analyze.php 프로젝트: alprs/Tuli
 protected function emitError($msg, Op $op)
 {
     echo $msg;
     echo " ";
     echo $op->getFile() . ":" . $op->getLine();
     echo "\n";
 }