@@ -29,23 +29,23 @@ |
||
| 29 | 29 | public function __construct(ContainerInterface $container) { |
| 30 | 30 | $this->container = $container; |
| 31 | 31 | |
| 32 | - $this->addAdapter(self::COLLECTION_ADAPTER, function () { |
|
| 32 | + $this->addAdapter(self::COLLECTION_ADAPTER, function() { |
|
| 33 | 33 | return $this->container->get('adapter.collection'); |
| 34 | 34 | }); |
| 35 | 35 | |
| 36 | - $this->addAdapter(self::PAGINATION_ADAPTER, function () { |
|
| 36 | + $this->addAdapter(self::PAGINATION_ADAPTER, function() { |
|
| 37 | 37 | return $this->container->get('adapter.pagination'); |
| 38 | 38 | }); |
| 39 | 39 | |
| 40 | - $this->addAdapter(self::ORDER_ADAPTER, function () { |
|
| 40 | + $this->addAdapter(self::ORDER_ADAPTER, function() { |
|
| 41 | 41 | return $this->container->get('adapter.order'); |
| 42 | 42 | }); |
| 43 | 43 | |
| 44 | - $this->addAdapter(self::FILTER_ADAPTER, function () { |
|
| 44 | + $this->addAdapter(self::FILTER_ADAPTER, function() { |
|
| 45 | 45 | return $this->container->get('adapter.filter'); |
| 46 | 46 | }); |
| 47 | 47 | |
| 48 | - $this->addAdapter(self::LIMIT_ADAPTER, function () { |
|
| 48 | + $this->addAdapter(self::LIMIT_ADAPTER, function() { |
|
| 49 | 49 | return $this->container->get('adapter.limit'); |
| 50 | 50 | }); |
| 51 | 51 | } |