| 1 | <?php | ||
| 20 | trait FormatterAwareTrait | ||
| 21 | { | ||
| 22 | /** | ||
| 23 | * @var FormatterInterface | ||
| 24 | */ | ||
| 25 | protected $formatter; | ||
| 26 | |||
| 27 | /** | ||
| 28 |      * {@inheritDoc} | ||
| 29 | */ | ||
| 30 | public function getFormatter(): FormatterInterface | ||
| 34 | |||
| 35 | /** | ||
| 36 |      * {@inheritDoc} | ||
| 37 | */ | ||
| 38 | public function setFormatter(FormatterInterface $formatter) | ||
| 43 | } |