-
Notifications
You must be signed in to change notification settings - Fork 1
/
_ide_helper_models.php
105 lines (98 loc) · 3.96 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
<?php
// @formatter:off
// phpcs:ignoreFile
/**
* 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{
/**
*
*
* @property string $id
* @property string|null $winner
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @method static \Database\Factories\GameFactory factory($count = null, $state = [])
* @method static \Illuminate\Database\Eloquent\Builder|Game newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Game newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Game query()
* @method static \Illuminate\Database\Eloquent\Builder|Game whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Game whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Game whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Game whereWinner($value)
* @mixin \Eloquent
*/
#[\AllowDynamicProperties]
class IdeHelperGame {}
}
namespace App\Models{
/**
*
*
* @property int $id
* @property string $email
* @property string $name
* @property string $password
* @property string|null $confirmation_token
* @property string|null $secret
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @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 whereConfirmationToken($value)
* @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 whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|User wherePassword($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereSecret($value)
* @method static \Illuminate\Database\Eloquent\Builder|User whereUpdatedAt($value)
* @mixin \Eloquent
*/
#[\AllowDynamicProperties]
class IdeHelperUser {}
}
namespace App\Models{
/**
*
*
* @property int $user_id
* @property string $game_id
* @property string $symbol
* @method static \Illuminate\Database\Eloquent\Builder|User_join newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|User_join newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|User_join query()
* @method static \Illuminate\Database\Eloquent\Builder|User_join whereGameId($value)
* @method static \Illuminate\Database\Eloquent\Builder|User_join whereSymbol($value)
* @method static \Illuminate\Database\Eloquent\Builder|User_join whereUserId($value)
* @mixin \Eloquent
*/
#[\AllowDynamicProperties]
class IdeHelperUser_join {}
}
namespace App\Models{
/**
*
*
* @property int $user_id
* @property string $game_id
* @property string $symbol
* @property string $position
* @method static \Illuminate\Database\Eloquent\Builder|User_move newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|User_move newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|User_move query()
* @method static \Illuminate\Database\Eloquent\Builder|User_move whereGameId($value)
* @method static \Illuminate\Database\Eloquent\Builder|User_move wherePosition($value)
* @method static \Illuminate\Database\Eloquent\Builder|User_move whereSymbol($value)
* @method static \Illuminate\Database\Eloquent\Builder|User_move whereUserId($value)
* @mixin \Eloquent
*/
#[\AllowDynamicProperties]
class IdeHelperUser_move {}
}