| Total Complexity | 1 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | class ToEventlog extends ToSyslog implements Loggingable |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * Předvolená metoda logování. |
||
| 21 | * |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | public $logType = 'eventlog'; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var ToEventlog Saves obejct instace (singleton...). |
||
| 28 | */ |
||
| 29 | private static $instance = null; |
||
|
|
|||
| 30 | |||
| 31 | /** |
||
| 32 | * Encode For Windows event Log |
||
| 33 | * |
||
| 34 | * @param string $messageRaw |
||
| 35 | * |
||
| 36 | * @return string ready to use message |
||
| 37 | */ |
||
| 38 | public function finalizeMessage($messageRaw) |
||
| 44 |