Skip to content

Commit 18de007

Browse files
authored
Merge pull request #466 from jeremykenedy/analysis-vZGlAg
Apply fixes from StyleCI
2 parents 074bb1b + 72f894e commit 18de007

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

app/Http/Controllers/Auth/ActivateController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public static function getActivationRoute()
7676
/**
7777
* Redirect the user after activation with admin logic.
7878
*
79-
* @param $user The user
79+
* @param $user The user
8080
* @param currentRoute The current route
8181
* @return Redirect
8282
*/

app/Http/Controllers/ProfilesController.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public function __construct()
3939
* Fetch user
4040
* (You can extract this to repository method).
4141
*
42-
* @param $username
42+
* @param $username
4343
* @return mixed
4444
*/
4545
public function getUserByUsername($username)
@@ -74,7 +74,7 @@ public function show($username)
7474
/**
7575
* /profiles/username/edit.
7676
*
77-
* @param $username
77+
* @param $username
7878
* @return mixed
7979
*/
8080
public function edit($username)
@@ -107,7 +107,7 @@ public function edit($username)
107107
* Update a user's profile.
108108
*
109109
* @param \App\Http\Requests\UpdateUserProfile $request
110-
* @param $username
110+
* @param $username
111111
* @return mixed
112112
*
113113
* @throws Laracasts\Validation\FormValidationException
@@ -220,7 +220,7 @@ public function updateUserPassword(UpdateUserPasswordRequest $request, $id)
220220
/**
221221
* Upload and Update user avatar.
222222
*
223-
* @param $file
223+
* @param $file
224224
* @return mixed
225225
*/
226226
public function upload(Request $request)
@@ -252,8 +252,8 @@ public function upload(Request $request)
252252
/**
253253
* Show user avatar.
254254
*
255-
* @param $id
256-
* @param $image
255+
* @param $id
256+
* @param $image
257257
* @return string
258258
*/
259259
public function userProfileAvatar($id, $image)

app/Notifications/SendActivationEmail.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class SendActivationEmail extends Notification implements ShouldQueue
1818
*
1919
* SendActivationEmail constructor.
2020
*
21-
* @param $token
21+
* @param $token
2222
*/
2323
public function __construct($token)
2424
{

0 commit comments

Comments
 (0)