1 | <?php |
||
40 | class User extends Model implements AuthenticatableContract, CanResetPasswordContract |
||
41 | { |
||
42 | use Authenticatable, |
||
43 | CanResetPassword, |
||
44 | Traits\User\CountTrait, |
||
45 | Traits\User\RelationTrait, |
||
46 | Traits\User\CrudTrait, |
||
47 | Traits\User\QueryTrait; |
||
48 | |||
49 | /** |
||
50 | * User name is private. |
||
51 | * |
||
52 | * @var int |
||
53 | */ |
||
54 | const PRIVATE_YES = 1; |
||
55 | |||
56 | /** |
||
57 | * User name is public. |
||
58 | * |
||
59 | * @var int |
||
60 | */ |
||
61 | const PRIVATE_NO = 0; |
||
62 | |||
63 | /** |
||
64 | * User status Deleted. |
||
65 | * |
||
66 | * @var int |
||
67 | */ |
||
68 | const DELETED_USERS = 1; |
||
69 | |||
70 | /** |
||
71 | * User status not deleted. |
||
72 | * |
||
73 | * @var int |
||
74 | */ |
||
75 | const NOT_DELETED_USERS = 0; |
||
76 | |||
77 | /** |
||
78 | * User status active. (Standard). |
||
79 | * |
||
80 | * @var int |
||
81 | */ |
||
82 | const ACTIVE_USER = 1; |
||
83 | |||
84 | /** |
||
85 | * User status blocked. (Too many login attempts). |
||
86 | * |
||
87 | * @var int |
||
88 | */ |
||
89 | const BLOCKED_USER = 2; |
||
90 | |||
91 | /** |
||
92 | * User status inactive. (Cannot login at the moment). |
||
93 | * |
||
94 | * @var int |
||
95 | */ |
||
96 | const INACTIVE_USER = 0; |
||
97 | |||
98 | /** |
||
99 | * The database table used by the model. |
||
100 | * |
||
101 | * @var string |
||
102 | */ |
||
103 | protected $table = 'users'; |
||
104 | |||
105 | /** |
||
106 | * The attributes that are mass assignable. |
||
107 | * |
||
108 | * @var array |
||
109 | */ |
||
110 | protected $fillable = ['deleted', 'email', 'password', 'firstname', 'lastname', 'role_id', 'private', 'language', 'status']; |
||
111 | |||
112 | /** |
||
113 | * The attributes excluded from the model's JSON form. |
||
114 | * |
||
115 | * @var array |
||
116 | */ |
||
117 | protected $hidden = ['password', 'remember_token']; |
||
118 | |||
119 | /** |
||
120 | * Collection of user permissions. |
||
121 | * |
||
122 | * @var Eloquent\Collection |
||
123 | */ |
||
124 | protected $permission; |
||
125 | |||
126 | /** |
||
127 | * Get available languages from translations folder. |
||
128 | * |
||
129 | * @return array |
||
130 | */ |
||
131 | 3 | public static function getLanguages() |
|
144 | |||
145 | /** |
||
146 | * Checks to see if $this user is current user. |
||
147 | * |
||
148 | * @return bool |
||
149 | */ |
||
150 | 3 | public function me() |
|
154 | |||
155 | /** |
||
156 | * Whether or not the user has a valid permission in current context |
||
157 | * e.g. can access the issue or the project. |
||
158 | * |
||
159 | * @param Route $route |
||
160 | * |
||
161 | * @return bool |
||
162 | */ |
||
163 | 39 | public function permissionInContext(Route $route) |
|
183 | |||
184 | /** |
||
185 | * Whether or not the user has a permission. |
||
186 | * |
||
187 | * @param string $key |
||
188 | * |
||
189 | * @return bool |
||
190 | */ |
||
191 | 60 | public function permission($key) |
|
202 | |||
203 | /** |
||
204 | * Return user full name with property "fullname". |
||
205 | * |
||
206 | * @return string |
||
207 | */ |
||
208 | 44 | public function getFullNameAttribute() |
|
216 | |||
217 | /** |
||
218 | * Return user image. |
||
219 | * |
||
220 | * @return string |
||
221 | */ |
||
222 | 5 | public function getImageAttribute() |
|
226 | |||
227 | /** |
||
228 | * Returns list of user statuses. |
||
229 | * |
||
230 | * @return array |
||
231 | */ |
||
232 | 2 | public static function getStatuses() |
|
240 | |||
241 | /** |
||
242 | * Whether or not the user is active. |
||
243 | * |
||
244 | * @return bool |
||
245 | */ |
||
246 | 7 | public function isActive() |
|
250 | |||
251 | /** |
||
252 | * Whether or not the user is inactive. |
||
253 | * |
||
254 | * @return bool |
||
255 | */ |
||
256 | public function isInactive() |
||
260 | |||
261 | /** |
||
262 | * Whether or not the user is blocked. |
||
263 | * |
||
264 | * @return bool |
||
265 | */ |
||
266 | public function isBlocked() |
||
270 | |||
271 | /** |
||
272 | * Whether or not the user is normal user role. |
||
273 | * |
||
274 | * @return bool |
||
275 | */ |
||
276 | 20 | public function isUser() |
|
280 | } |
||
281 |
Since your code implements the magic getter
_get
, this function will be called for any read access on an undefined variable. You can add the@property
annotation to your class or interface to document the existence of this variable.If the property has read access only, you can use the @property-read annotation instead.
Of course, you may also just have mistyped another name, in which case you should fix the error.
See also the PhpDoc documentation for @property.