| Total Complexity | 2 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | abstract class Model extends IlluminateModel |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * Get the current connection name for the model. |
||
| 23 | */ |
||
| 24 | public function getConnectionName(): string | null |
||
| 25 | { |
||
| 26 | return Config::get('love.storage.database.connection'); |
||
| 27 | } |
||
| 28 | |||
| 29 | public function getTable(): string |
||
| 33 | } |
||
| 34 | } |
||
| 35 |