| Total Complexity | 3 |
| Total Lines | 26 |
| 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 | public function createFileDriver(): LogRecordInterface |
||
| 26 | { |
||
| 27 | return new FileDriver(); |
||
| 28 | } |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Get an instance of the log driver. |
||
| 32 | */ |
||
| 33 | public function createDatabaseDriver(): LogRecordInterface |
||
| 36 | } |
||
| 37 | } |
||
| 38 |