1 | <?php |
||
12 | class Member extends User |
||
13 | { |
||
14 | use Tenantable; |
||
15 | |||
16 | /** |
||
17 | * {@inheritdoc} |
||
18 | */ |
||
19 | protected $passwordResetNotificationClass = MemberPasswordResetNotification::class; |
||
|
|||
20 | |||
21 | /** |
||
22 | * {@inheritdoc} |
||
23 | */ |
||
24 | protected $emailVerificationNotificationClass = MemberEmailVerificationNotification::class; |
||
25 | |||
26 | /** |
||
27 | * {@inheritdoc} |
||
28 | */ |
||
29 | protected $phoneVerificationNotificationClass = PhoneVerificationNotification::class; |
||
30 | |||
31 | /** |
||
32 | * Create a new Eloquent model instance. |
||
33 | * |
||
34 | * @param array $attributes |
||
35 | */ |
||
36 | public function __construct(array $attributes = []) |
||
62 | |||
63 | /** |
||
64 | * Get the route key for the model. |
||
65 | * |
||
66 | * @return string |
||
67 | */ |
||
68 | public function getRouteKeyName() |
||
72 | } |
||
73 |
Very long variable names usually make code harder to read. It is therefore recommended not to make variable names too verbose.