@@ -58,7 +58,7 @@ |
||
58 | 58 | $words = explode(' ', $this->getTitle()); |
59 | 59 | |
60 | 60 | $abbrArray = array_map( |
61 | - static function ($word) { |
|
61 | + static function($word) { |
|
62 | 62 | $array = mb_str_split($word); |
63 | 63 | |
64 | 64 | return current($array); |
@@ -6,7 +6,7 @@ |
||
6 | 6 | Route::name('kield01.mdp.') |
7 | 7 | ->prefix('mdp') |
8 | 8 | ->group( |
9 | - static function () { |
|
9 | + static function() { |
|
10 | 10 | Route::get('login', [TestAuthController::class, 'login'])->name('user.login'); |
11 | 11 | Route::post('login', [TestAuthController::class, 'auth'])->name('user.auth'); |
12 | 12 |
@@ -8,10 +8,10 @@ |
||
8 | 8 | Route::name('kield01.mdp.dashboard.') |
9 | 9 | ->prefix('mdp') |
10 | 10 | ->group( |
11 | - static function () { |
|
11 | + static function() { |
|
12 | 12 | Route::prefix('dashboard') |
13 | 13 | ->group( |
14 | - static function () { |
|
14 | + static function() { |
|
15 | 15 | Route::get('', [TestDashboardController::class, 'dashboard'])->name('index'); |
16 | 16 | } |
17 | 17 | ); |