Вход Регистрация
Файл: gapps/vendor/classpreloader/classpreloader/src/Parser/NodeTraverser.php
Строк: 29
<?php

/*
 * This file is part of Class Preloader.
 *
 * (c) Graham Campbell <graham@alt-three.com>
 * (c) Michael Dowling <mtdowling@gmail.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace ClassPreloaderParser;

use 
PhpParserNodeTraverser as BaseTraverser;

/**
 * This is the file node visitor class.
 *
 * This allows a filename to be set when visiting.
 */
class NodeTraverser extends BaseTraverser
{
    
/**
     * Transverse the file.
     *
     * @param array  $nodes
     * @param string $filename
     *
     * @return PhpParserNode[]
     */
    
public function traverseFile(array $nodes$filename)
    {
        
// Set the correct state on each visitor
        
foreach ($this->visitors as $visitor) {
            if (
$visitor instanceof AbstractNodeVisitor) {
                
$visitor->setFilename($filename);
            }
        }

        return 
$this->traverse($nodes);
    }
}
Онлайн: 0
Реклама