Skip to content

Commit c172a83

Browse files
committed
wip
2 parents 2101b9c + 25213e5 commit c172a83

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

routes/api.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
// Global Search...
1818
Route::get('/search', '\\'.GlobalSearchController::class);
1919

20-
Route::get('/profile', '\\' . ProfileController::class);
21-
Route::put('/profile', '\\' . ProfileUpdateController::class);
22-
Route::post('/profile/avatar', '\\' . ProfileAvatarController::class);
20+
Route::get('/profile', '\\'.ProfileController::class);
21+
Route::put('/profile', '\\'.ProfileUpdateController::class);
22+
Route::post('/profile/avatar', '\\'.ProfileAvatarController::class);
2323

2424
// Filters
2525
Route::get('/{repository}/filters', '\\'.RepositoryFilterController::class);

src/Http/Requests/ProfileAvatarRequest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,4 @@ public static function usingPath(callable $pathCallback)
2525
{
2626
static::$pathCallback = $pathCallback;
2727
}
28-
2928
}

tests/Fixtures/User/User.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class User extends Authenticatable implements Sanctumable, MustVerifyEmail, Rest
3636
* @var array
3737
*/
3838
protected $fillable = [
39-
'name', 'email', 'password', 'email_verified_at', 'avatar'
39+
'name', 'email', 'password', 'email_verified_at', 'avatar',
4040
];
4141

4242
/**

0 commit comments

Comments
 (0)