| Total Complexity | 4 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | class NotificationCommand extends Command |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var NewMessageMailNotifier |
||
| 17 | */ |
||
| 18 | protected $notifier; |
||
| 19 | |||
| 20 | public function __construct( |
||
| 21 | NewMessageMailNotifier $notifier |
||
| 22 | ) { |
||
| 23 | $this->notifier = $notifier; |
||
| 24 | parent::__construct(); |
||
| 25 | } |
||
| 26 | |||
| 27 | protected function configure() |
||
| 32 | ; |
||
| 33 | } |
||
| 34 | |||
| 35 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 46 |