| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | public function register() |
||
| 27 | { |
||
| 28 | $this->container->add(BooleanCoercer::class, BooleanCoercer::class, true/* $shared */); |
||
| 29 | $this->container->add(FloatCoercer::class, FloatCoercer::class, true/* $shared */); |
||
| 30 | $this->container->add(IntCoercer::class, IntCoercer::class, true/* $shared */); |
||
| 31 | $this->container->add(StringCoercer::class, StringCoercer::class, true/* $shared */); |
||
| 32 | } |
||
| 34 |