PhalconRest\Di\FactoryDefault::__construct PHP Method

__construct() public method

public __construct ( )
    public function __construct()
    {
        parent::__construct();
        $this->setShared(Services::FRACTAL_MANAGER, function () {
            $className = '\\League\\Fractal\\Manager';
            if (!class_exists($className)) {
                throw new Exception(ErrorCodes::GENERAL_SYSTEM, null, '\\League\\Fractal\\Manager was requested, but class could not be found');
            }
            return new $className();
        });
        $this->setShared(Services::PHQL_QUERY_PARSER, new PhqlQueryParser());
    }
FactoryDefault