lithium\test\Mocker::_mocker PHP Метод

_mocker() защищенный статический Метод

Will generate the mocker from the current mockee.
protected static _mocker ( string $mockee ) : array
$mockee string The fully namespaced `\Mock` class
Результат array
    protected static function _mocker($mockee)
    {
        $sections = explode('\\', $mockee);
        array_pop($sections);
        $sections[] = ucfirst(array_pop($sections));
        return implode('\\', $sections);
    }