| 1 | <?php | ||
| 21 | abstract class AbstractFormatterSubscriber extends AbstractTimerSubscriber | ||
| 22 | { | ||
| 23 | /** | ||
| 24 | * @var FormatterInterface | ||
| 25 | */ | ||
| 26 | private $formatter; | ||
| 27 | |||
| 28 | /** | ||
| 29 | * @param FormatterInterface|null $formatter | ||
| 30 | * @param TimerInterface|null $timer | ||
| 31 | */ | ||
| 32 | 81 | public function __construct(FormatterInterface $formatter = null, TimerInterface $timer = null) | |
| 38 | |||
| 39 | /** | ||
| 40 | * @return FormatterInterface | ||
| 41 | */ | ||
| 42 | 72 | public function getFormatter() | |
| 46 | } | ||
| 47 |