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

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

Strips the Cake prefix off of classes that no longer have it.
protected _mapClassName ( array $matches ) : array
$matches array
Результат array
    protected function _mapClassName($matches)
    {
        if (empty($matches[3])) {
            unset($matches[3]);
        }
        if (in_array($matches[1], $this->rename)) {
            $matches[1] = substr($matches[1], 4);
        }
        return $matches;
    }