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

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

Is the current path within the scope of this task?
protected _shouldProcess ( string $path ) : boolean
$path string
Результат boolean
    protected function _shouldProcess($path)
    {
        if (basename($path) === 'composer.json' && empty($this->params['plugin'])) {
            return true;
        }
        return false;
    }