Conditions | 4 |
Paths | 4 |
Total Lines | 14 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 4 |
Changes | 0 |
1 | <?php |
||
31 | 9 | public function extractMessage($object) |
|
32 | { |
||
33 | 9 | if (!$object instanceof UserEvent) { |
|
34 | 3 | return null; |
|
35 | } |
||
36 | |||
37 | 6 | foreach ($this->gameResultExtractors as $extractor) { |
|
38 | 3 | if ($message = $extractor->extractMessage($object)) { |
|
39 | 3 | return $message; |
|
40 | } |
||
41 | 2 | } |
|
42 | |||
43 | 3 | return null; |
|
44 | } |
||
45 | } |
||
46 |