| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | public function __construct(SilexApplication $silexApplication) |
||
| 21 | { |
||
| 22 | parent::__construct('My Sandstone application'); |
||
| 23 | |||
| 24 | $this->silexApplication = $silexApplication; |
||
| 25 | $this->silexApplication->boot(); |
||
| 26 | |||
| 27 | $this->addCommands([ |
||
| 28 | new PushMessageCommand($this->silexApplication['dispatcher']), |
||
| 29 | ]); |
||
| 30 | } |
||
| 31 | } |
||
| 32 |