|
@@ 206-208 (lines=3) @@
|
| 203 |
|
*/ |
| 204 |
|
protected function loadModuleMigrations($module) |
| 205 |
|
{ |
| 206 |
|
if (is_dir(base_path('app/Modules/' . $module . '/Database/Migrations'))) { |
| 207 |
|
/** @scrutinizer ignore-call */ |
| 208 |
|
$this->loadMigrationsFrom(base_path('app/Modules/' . $module . '/Database/Migrations'), $module); |
| 209 |
|
} |
| 210 |
|
} |
| 211 |
|
|
|
@@ 245-247 (lines=3) @@
|
| 242 |
|
*/ |
| 243 |
|
protected function loadModuleTranslations($module) |
| 244 |
|
{ |
| 245 |
|
if (is_dir(base_path('app/Modules/' . $module . '/Lang'))) { |
| 246 |
|
$this->loadTranslationsFrom(base_path('app/Modules/' . $module . '/Lang'), $module); |
| 247 |
|
} |
| 248 |
|
} |
| 249 |
|
|
| 250 |
|
/** |