| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 6 | class LogManager extends Manager |
||
| 7 | { |
||
| 8 | /** |
||
| 9 | * Get the default driver name. |
||
| 10 | * |
||
| 11 | * @return string |
||
| 12 | */ |
||
| 13 | public function getDefaultDriver() |
||
| 14 | { |
||
| 15 | return config('stethoscope.drivers.log'); |
||
| 16 | } |
||
| 17 | /** |
||
| 18 | * Get an instance of the log driver. |
||
| 19 | * |
||
| 20 | * @return LogRecordInterface |
||
| 21 | */ |
||
| 22 | public function createLogDriver(): LogRecordInterface |
||
| 25 | } |
||
| 26 | } |
||
| 27 |