Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
30 | public function __construct($params) |
||
31 | { |
||
32 | $this->event = $params[0]; |
||
33 | |||
34 | $eventParams = $this->event->getParameters(); |
||
35 | |||
36 | $this->fields = $eventParams['fields']; |
||
37 | $this->id = $eventParams['id']['ID']; |
||
38 | |||
39 | if (!$this->fieldsHaveBeenChanged()) { |
||
40 | throw new SkipHandlerException(); |
||
41 | } |
||
42 | } |
||
43 | |||
90 |