Jarves\Configuration\Object::getFinalApiController PHP Method

getFinalApiController() public method

public getFinalApiController ( ) : string
return string
    public function getFinalApiController()
    {
        if (null === $this->apiControllerService) {
            $defaultService = 'jarves.crud.controller.object';
            $defaultNestedService = 'jarves.crud.controller.nested_object';
            return $this->isNested() ? $defaultNestedService : $defaultService;
        }
        return $this->apiControllerService;
    }
Object