We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -113,10 +113,10 @@ |
||
113 | 113 | } |
114 | 114 | |
115 | 115 | /** |
116 | - * Get the route key for the model. |
|
117 | - * |
|
118 | - * @return string |
|
119 | - */ |
|
116 | + * Get the route key for the model. |
|
117 | + * |
|
118 | + * @return string |
|
119 | + */ |
|
120 | 120 | public function getRouteKeyName() |
121 | 121 | { |
122 | 122 | return 'username'; |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | */ |
70 | 70 | public function getFullNameAttribute($value) |
71 | 71 | { |
72 | - return ucfirst($this->first_name) . ' ' . ucfirst($this->last_name); |
|
72 | + return ucfirst($this->first_name).' '.ucfirst($this->last_name); |
|
73 | 73 | } |
74 | 74 | |
75 | 75 | /** |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | |
110 | 110 | public function getIsActiveAttribute() |
111 | 111 | { |
112 | - return $this->attributes['active'] == true; |
|
112 | + return $this->attributes[ 'active' ] == true; |
|
113 | 113 | } |
114 | 114 | |
115 | 115 | /** |