| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php namespace Limoncello\Flute\Validation\Traits; |
||
| 34 | protected function createValidationFormatter(): FormatterInterface |
||
| 35 | { |
||
| 36 | /** @var FormatterFactoryInterface $factory */ |
||
| 37 | $factory = $this->getContainer()->get(FormatterFactoryInterface::class); |
||
| 38 | $formatter = $factory->createFormatter(Validator::RESOURCES_NAMESPACE); |
||
| 39 | |||
| 40 | return $formatter; |
||
| 41 | } |
||
| 42 | } |
||
| 43 |