Jarves\Configuration\Object::getFinalApiController PHP Méthode

getFinalApiController() public méthode

public getFinalApiController ( ) : string
Résultat 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