| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | protected function configure() |
||
| 26 | { |
||
| 27 | $this->install(new ValidateModule); |
||
| 28 | $this->bind(BuilderInterface::class)->to(Builder::class); |
||
| 29 | $this->bind(Filter::class)->toProvider(FilterProvider::class); |
||
| 30 | $this->bind(FilterInterface::class)->to(Filter::class); |
||
| 31 | $this->bind(ValueFilter::class)->toProvider(ValueFilterProvider::class); |
||
| 32 | $this->bind(SubjectFilter::class)->toProvider(SubjectFilterProvider::class); |
||
| 33 | $this->bind(HelperLocatorFactory::class); |
||
| 34 | $this->bindInterceptor( |
||
| 35 | $this->matcher->any(), |
||
| 36 | $this->matcher->annotatedWith(AuraInput::class), |
||
| 37 | [AuraInputInterceptor::class] |
||
| 38 | ); |
||
| 39 | } |
||
| 40 | } |
||
| 41 |