Cake\Upgrade\Shell\Task\FixturesTask::_shouldProcess PHP Метод

_shouldProcess() защищенный Метод

Only process files in fixture folders
protected _shouldProcess ( string $path ) : boolean
$path string
Результат boolean
    protected function _shouldProcess($path)
    {
        return substr($path, -4) === '.php' && strpos($path, DS . 'tests' . DS . 'Fixture' . DS);
    }