| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 13 | 
| Code Lines | 9 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 2 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 39 | public function __construct( | ||
| 40 | ReaderInterface $reader, | ||
| 41 | FilterInterface $filter, | ||
| 42 | NotificationInterface $notify | ||
| 43 | ) | ||
| 44 |     { | ||
| 45 | parent::__construct(); | ||
| 46 | $this->reader = $reader; | ||
| 47 | $this->filter = $filter; | ||
| 48 | $this->notify = $notify; | ||
| 49 | |||
| 50 | $this->registerSignalHandler(SIGTERM, array($this, 'signalHandler')); | ||
| 51 | } | ||
| 52 | |||
| 83 | } | 
As per the PSR-2 coding standard, there must not be a space in front of the colon in case statements.
To learn more about the PSR-2 coding standard, please refer to the PHP-Fig.