-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_ide_helper_models.php
117 lines (111 loc) · 5.81 KB
/
_ide_helper_models.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?php
// @formatter:off
/**
* A helper file for your Eloquent Models
* Copy the phpDocs from this file to the correct Model,
* And remove them from this file, to prevent double declarations.
*
* @author Barry vd. Heuvel <barryvdh@gmail.com>
*/
namespace App\Models{
/**
* App\Models\Message
*
* @property int $id
* @property int $sender_id
* @property int $recipient_id
* @property string $text
* @property int $is_location
* @property \Illuminate\Support\Carbon|null $read_at
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read \App\Models\User $recipient
* @property-read \App\Models\User $sender
* @method static \Database\Factories\MessageFactory factory(...$parameters)
* @method static \Illuminate\Database\Eloquent\Builder|Message newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Message newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Message query()
* @method static \Illuminate\Database\Eloquent\Builder|Message whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Message whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Message whereIsLocation($value)
* @method static \Illuminate\Database\Eloquent\Builder|Message whereReadAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Message whereRecipientId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Message whereSenderId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Message whereText($value)
* @method static \Illuminate\Database\Eloquent\Builder|Message whereUpdatedAt($value)
*/
class Message extends \Eloquent {}
}
namespace App\Models{
/**
* App\Models\SocialAccount
*
* @property int $id
* @property int $user_id
* @property string $provider_name
* @property string $provider_id
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read \App\Models\User $user
* @method static \Illuminate\Database\Eloquent\Builder|SocialAccount newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|SocialAccount newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|SocialAccount query()
* @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereProviderId($value)
* @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereProviderName($value)
* @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|SocialAccount whereUserId($value)
*/
class SocialAccount extends \Eloquent {}
}
namespace App\Models{
/**
* App\Models\User
*
* @property int $id
* @property string $first_name
* @property string $last_name
* @property string $email
* @property \Illuminate\Support\Carbon|null $email_verified_at
* @property string|null $password
* @property string|null $two_factor_secret
* @property string|null $two_factor_recovery_codes
* @property string|null $remember_token
* @property int $is_online
* @property int $is_admin
* @property \Illuminate\Support\Carbon|null $last_online_at
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read string $full_name
* @property-read \Spatie\MediaLibrary\MediaCollections\Models\Collections\MediaCollection|\Spatie\MediaLibrary\MediaCollections\Models\Media[] $media
* @property-read int|null $media_count
* @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\Message[] $messagesReceived
* @property-read int|null $messages_received_count
* @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\Message[] $messagesSent
* @property-read int|null $messages_sent_count
* @property-read \Illuminate\Notifications\DatabaseNotificationCollection|\Illuminate\Notifications\DatabaseNotification[] $notifications
* @property-read int|null $notifications_count
* @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\SocialAccount[] $socialAccounts
* @property-read int|null $social_accounts_count
* @method static \Database\Factories\UserFactory factory(...$parameters)
* @method static \Illuminate\Database\Eloquent\Builder|User newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|User newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|User query()
* @method static \Illuminate\Database\Eloquent\Builder|User whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereEmail($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereEmailVerifiedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereFirstName($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereIsAdmin($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereIsOnline($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereLastName($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereLastOnlineAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|User wherePassword($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereRememberToken($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereTwoFactorRecoveryCodes($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereTwoFactorSecret($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereUpdatedAt($value)
*/
class User extends \Eloquent implements \Spatie\MediaLibrary\HasMedia {}
}