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;
    }