Cake\Upgrade\Shell\Task\AppUsesTask::_process PHP Метод

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

Order App::uses statements and replace the class in the source if it appears
protected _process ( $path ) : void
Результат void
    protected function _process($path)
    {
        $original = $contents = $this->Stage->source($path);
        $contents = $this->_replaceAppUses($contents);
        $contents = $this->_removeDynamicAppUses($contents);
        $contents = $this->_addImplicitUses($contents);
        $contents = $this->_orderUses($contents);
        $contents = $this->_replaceReferences($contents);
        return $this->Stage->change($path, $original, $contents);
    }