Opis\Closure\ReflectionClosure::getFileTokens PHP 메소드

getFileTokens() 보호된 메소드

protected getFileTokens ( ) : array
리턴 array
    protected function getFileTokens()
    {
        $key = $this->getHashedFileName();
        if (!isset(static::$files[$key])) {
            static::$files[$key] = token_get_all(file_get_contents($this->getFileName()));
        }
        return static::$files[$key];
    }