-
Notifications
You must be signed in to change notification settings - Fork 0
/
_ide_helper_models.php
163 lines (155 loc) · 8.27 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<?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{
/**
* App\BertrandGame
*
* @property int $id
* @property string $name
* @property string $hashed_link
* @property int $number_of_turns
* @property int $number_of_players
* @property array $game_urls
* @property array $plays
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @method static \Illuminate\Database\Eloquent\Builder|\App\BertrandGame newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\BertrandGame newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\BertrandGame query()
* @method static \Illuminate\Database\Eloquent\Builder|\App\BertrandGame whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\BertrandGame whereGameUrls($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\BertrandGame whereHashedLink($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\BertrandGame whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\BertrandGame whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\BertrandGame whereNumberOfPlayers($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\BertrandGame whereNumberOfTurns($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\BertrandGame wherePlays($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\BertrandGame whereUpdatedAt($value)
*/
class BertrandGame extends \Eloquent {}
}
namespace App{
/**
* App\User
*
* @property int $id
* @property string $name
* @property string $email
* @property \Illuminate\Support\Carbon|null $email_verified_at
* @property string $password
* @property string|null $remember_token
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read \Illuminate\Notifications\DatabaseNotificationCollection|\Illuminate\Notifications\DatabaseNotification[] $notifications
* @property-read int|null $notifications_count
* @method static \Illuminate\Database\Eloquent\Builder|\App\User newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\User newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\User query()
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereEmail($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereEmailVerifiedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User wherePassword($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereRememberToken($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereUpdatedAt($value)
*/
class User extends \Eloquent {}
}
namespace App{
/**
* App\TwoThirdOfTheMean
*
* @property int $id
* @property string $name
* @property string $hashed_link
* @property int $number_of_turns
* @property array $game_urls
* @property array $plays
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @method static \Illuminate\Database\Eloquent\Builder|\App\TwoThirdOfTheMean newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\TwoThirdOfTheMean newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\TwoThirdOfTheMean query()
* @method static \Illuminate\Database\Eloquent\Builder|\App\TwoThirdOfTheMean whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\TwoThirdOfTheMean whereGameUrls($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\TwoThirdOfTheMean whereHashedLink($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\TwoThirdOfTheMean whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\TwoThirdOfTheMean whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\TwoThirdOfTheMean whereNumberOfTurns($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\TwoThirdOfTheMean wherePlays($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\TwoThirdOfTheMean whereUpdatedAt($value)
*/
class TwoThirdOfTheMean extends \Eloquent {}
}
namespace App{
/**
* App\CournotGame
*
* @property int $id
* @property string $name
* @property string $hashed_link
* @property int $number_of_turns
* @property array $number_of_players
* @property array $game_urls
* @property array $plays
* @property array $payoffs
* @property bool $isFinished
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @method static \Illuminate\Database\Eloquent\Builder|\App\CournotGame newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\CournotGame newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\CournotGame query()
* @method static \Illuminate\Database\Eloquent\Builder|\App\CournotGame whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\CournotGame whereGameUrls($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\CournotGame whereHashedLink($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\CournotGame whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\CournotGame whereIsFinished($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\CournotGame whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\CournotGame whereNumberOfPlayers($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\CournotGame whereNumberOfTurns($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\CournotGame wherePayoffs($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\CournotGame wherePlays($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\CournotGame whereUpdatedAt($value)
*/
class CournotGame extends \Eloquent {}
}
namespace App{
/**
* App\RepeatedInmateDilemma
*
* @property int $id
* @property string $name
* @property string $hashed_link
* @property int $number_of_turns
* @property array $number_of_players
* @property array $game_urls
* @property array $plays
* @property array $payoffs
* @property bool $isFinished
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @method static \Illuminate\Database\Eloquent\Builder|\App\RepeatedInmateDilemma newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\RepeatedInmateDilemma newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\RepeatedInmateDilemma query()
* @method static \Illuminate\Database\Eloquent\Builder|\App\RepeatedInmateDilemma whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\RepeatedInmateDilemma whereGameUrls($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\RepeatedInmateDilemma whereHashedLink($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\RepeatedInmateDilemma whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\RepeatedInmateDilemma whereIsFinished($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\RepeatedInmateDilemma whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\RepeatedInmateDilemma whereNumberOfPlayers($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\RepeatedInmateDilemma whereNumberOfTurns($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\RepeatedInmateDilemma wherePayoffs($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\RepeatedInmateDilemma wherePlays($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\RepeatedInmateDilemma whereUpdatedAt($value)
*/
class RepeatedInmateDilemma extends \Eloquent {}
}