Conditions | 4 |
Paths | 4 |
Total Lines | 13 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 10 |
CRAP Score | 4 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
41 | 8 | public static function printMessages($clearQueue = true) |
|
42 | { |
||
43 | 4 | if (!empty($_SESSION[__TRAIT__])) { |
|
44 | /** @var Message $message */ |
||
45 | 4 | foreach ($_SESSION[__TRAIT__] as $message) { |
|
46 | 4 | $message->output(); |
|
47 | 8 | } |
|
48 | 4 | } |
|
49 | |||
50 | 4 | if ($clearQueue) { |
|
51 | 4 | static::clearQueue(); |
|
52 | 4 | } |
|
53 | 4 | } |
|
54 | |||
63 |