| Total Complexity | 3 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class LogManager extends Manager |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Get the default driver name. |
||
| 14 | * |
||
| 15 | * @return string |
||
| 16 | */ |
||
| 17 | public function getDefaultDriver() |
||
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Get an instance of the log driver. |
||
| 24 | * |
||
| 25 | * @return LogRecordInterface |
||
| 26 | */ |
||
| 27 | public function createFileDriver(): LogRecordInterface |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Get an instance of the log driver. |
||
| 34 | * |
||
| 35 | * @return LogRecordInterface |
||
| 36 | */ |
||
| 37 | public function createDatabaseDriver(): LogRecordInterface |
||
| 42 |