get = array(); // Categories $this->get['CategoryGateway'] = new CategoryGateway(); $this->get['CategoryRetriever'] = new CategoryRetriever($this->get['CategoryGateway']); // Tickets $this->get['TicketGateway'] = new TicketGateway(); $this->get['TicketRetriever'] = new TicketRetriever($this->get['TicketGateway']); // Bans $this->get['BanGateway'] = new BanGateway(); $this->get['BanRetriever'] = new BanRetriever($this->get['BanGateway']); // User Context $this->get['UserGateway'] = new UserGateway(); $this->get['UserContextBuilder'] = new UserContextBuilder($this->get['UserGateway']); } }