Bluz\Controller\Mapper\AbstractMapper::getCrud PHP Метод

getCrud() публичный Метод

Get crud instance
public getCrud ( ) : AbstractCrud
Результат Bluz\Crud\AbstractCrud
    public function getCrud()
    {
        if (!$this->crud) {
            throw new ControllerException("`Crud` class is not exists or not initialized");
        }
        return $this->crud;
    }