コード例 #1
0
ファイル: FileScanner.php プロジェクト: rmarshall-quibids/zf2
 protected function scan()
 {
     if (!$this->file) {
         throw new Exception\RuntimeException('File was not provided');
     }
     $this->setTokens(token_get_all(file_get_contents($this->file)));
     parent::scan();
 }
コード例 #2
0
ファイル: FileScanner.php プロジェクト: rickogden/zf2
    protected function scan()
    {
        if ($this->isScanned) {
            return;
        }

        $this->setTokens(token_get_all(file_get_contents($this->file)));
        parent::scan();
    }