Conditions | 3 |
Paths | 3 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
54 | public function __destruct() |
||
55 | { |
||
56 | if ($this->fetched !== true) { |
||
57 | // Comment exists, but has not been fetched. |
||
58 | foreach ($this->get() as $message) { |
||
59 | trigger_error('`' . $this->userAgent . '` at `' . $this->base . self::PATH . '` -> ' . $message, E_USER_NOTICE); |
||
60 | } |
||
61 | } |
||
62 | } |
||
63 | |||
86 |