| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | public function providerLevelMessages() |
||
| 28 | { |
||
| 29 | return [ |
||
| 30 | [LogLevel::ALERT, 'hello, i am the Log Entry!'], |
||
| 31 | [LogLevel::CRITICAL, 'hello, i am the Log Entry!'], |
||
| 32 | [LogLevel::EMERGENCY, 'hello, i am the Log Entry!'], |
||
| 33 | [LogLevel::DEBUG, 'hello, i am the Log Entry!'], |
||
| 34 | [LogLevel::ERROR, 'hello, i am the Log Entry!'], |
||
| 35 | [LogLevel::INFO, 'hello, i am the Log Entry!'], |
||
| 36 | [LogLevel::WARNING, 'hello, i am the Log Entry!'] |
||
| 37 | ]; |
||
| 38 | } |
||
| 39 | } |