Bluz\Controller\Mapper\AbstractMapper::getCrud PHP Method

getCrud() public method

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