| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 9 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | 12 | protected function configure() |
|
| 22 | { |
||
| 23 | 12 | $this->bind(ViewInterface::class)->to(DefaultView::class); |
|
| 24 | 12 | $this->bind(TemplateInterface::class)->to(DefaultTemplate::class); |
|
| 25 | 12 | $this->bind(AuraSqlPagerInterface::class)->to(AuraSqlPager::class); |
|
| 26 | 12 | $this->bind(AuraSqlPagerFactoryInterface::class)->to(AuraSqlPagerFactory::class); |
|
| 27 | 12 | $this->bind(AuraSqlQueryPagerFactoryInterface::class)->to(AuraSqlQueryPagerFactory::class); |
|
| 28 | 12 | $this->bind(AuraSqlQueryPagerInterface::class)->to(AuraSqlQueryPager::class); |
|
| 29 | 12 | $this->bind('')->annotatedWith(PagerViewOption::class)->toInstance([]); |
|
| 30 | 12 | } |
|
| 31 | } |
||
| 32 |