-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_ide_helper_models.php
113 lines (107 loc) · 5.54 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
<?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 <[email protected]>
*/
namespace App\Models{
/**
* App\Models\Notification
*
* @property int $id
* @property int $user_id
* @property \App\Enums\NotificationProviderEnum $provider
* @property bool $active
* @property string|null $scopes
* @property array|null $config
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read \Illuminate\Notifications\DatabaseNotificationCollection<int, \Illuminate\Notifications\DatabaseNotification> $notifications
* @property-read int|null $notifications_count
* @property-read \App\Models\User $user
* @method static \Database\Factories\NotificationFactory factory($count = null, $state = [])
* @method static \Illuminate\Database\Eloquent\Builder|Notification newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Notification newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Notification query()
* @method static \Illuminate\Database\Eloquent\Builder|Notification whereActive($value)
* @method static \Illuminate\Database\Eloquent\Builder|Notification whereConfig($value)
* @method static \Illuminate\Database\Eloquent\Builder|Notification whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Notification whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Notification whereProvider($value)
* @method static \Illuminate\Database\Eloquent\Builder|Notification whereScopes($value)
* @method static \Illuminate\Database\Eloquent\Builder|Notification whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Notification whereUserId($value)
*/
class Notification extends \Eloquent {}
}
namespace App\Models{
/**
* App\Models\Release
*
* @property int $id
* @property string $version
* @property int $version_id
* @property int $major_version
* @property string $notes
* @property array|null $files
* @property \Illuminate\Support\Carbon|null $published_at
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @method static \Database\Factories\ReleaseFactory factory($count = null, $state = [])
* @method static \Illuminate\Database\Eloquent\Builder|Release newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Release newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Release query()
* @method static \Illuminate\Database\Eloquent\Builder|Release whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Release whereFiles($value)
* @method static \Illuminate\Database\Eloquent\Builder|Release whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Release whereMajorVersion($value)
* @method static \Illuminate\Database\Eloquent\Builder|Release whereNotes($value)
* @method static \Illuminate\Database\Eloquent\Builder|Release wherePublishedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Release whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Release whereVersion($value)
* @method static \Illuminate\Database\Eloquent\Builder|Release whereVersionId($value)
*/
class Release extends \Eloquent {}
}
namespace App\Models{
/**
* App\Models\User
*
* @property int $id
* @property int $github_id
* @property string $name
* @property string $email
* @property string|null $remember_token
* @property bool $save_licence
* @property mixed|null $licence_url
* @property mixed|null $licence_key
* @property \Illuminate\Support\Carbon|null $licence_checked_at
* @property \Illuminate\Support\Carbon|null $delete_request_at
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Notification> $notifications
* @property-read int|null $notifications_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \Laravel\Sanctum\PersonalAccessToken> $tokens
* @property-read int|null $tokens_count
* @method static \Database\Factories\UserFactory factory($count = null, $state = [])
* @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 whereDeleteRequestAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereEmail($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereGithubId($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereLicenceCheckedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereLicenceKey($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereLicenceUrl($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereRememberToken($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereSaveLicence($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereUpdatedAt($value)
*/
class User extends \Eloquent {}
}