-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path_ide_helper_models.php
128 lines (122 loc) · 6.19 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
<?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\Npc
*
* @property int $id
* @property int $type
* @property string $name
* @property string $ip_address
* @property string $password
* @property string|null $webserver
* @property string $last_reset
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property \Illuminate\Support\Carbon|null $deleted_at
* @property-read mixed $human_type
* @method static bool|null forceDelete()
* @method static \Illuminate\Database\Eloquent\Builder|\App\Npc newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\Npc newQuery()
* @method static \Illuminate\Database\Query\Builder|\App\Npc onlyTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|\App\Npc query()
* @method static bool|null restore()
* @method static \Illuminate\Database\Eloquent\Builder|\App\Npc whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Npc whereDeletedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Npc whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Npc whereIpAddress($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Npc whereLastReset($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Npc whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Npc wherePassword($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Npc whereType($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Npc whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Npc whereWebserver($value)
* @method static \Illuminate\Database\Query\Builder|\App\Npc withTrashed()
* @method static \Illuminate\Database\Query\Builder|\App\Npc withoutTrashed()
*/
class Npc extends \Eloquent {}
}
namespace App{
/**
* App\Server
*
* @property int $id
* @property int|null $user_id
* @property int|null $npc_id
* @property string $name
* @property int $cpu
* @property int $hdd
* @property int $ram
* @property int $network
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property \Illuminate\Support\Carbon|null $deleted_at
* @method static bool|null forceDelete()
* @method static \Illuminate\Database\Eloquent\Builder|\App\Server newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\Server newQuery()
* @method static \Illuminate\Database\Query\Builder|\App\Server onlyTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|\App\Server query()
* @method static bool|null restore()
* @method static \Illuminate\Database\Eloquent\Builder|\App\Server whereCpu($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Server whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Server whereDeletedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Server whereHdd($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Server whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Server whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Server whereNetwork($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Server whereNpcId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Server whereRam($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Server whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Server whereUserId($value)
* @method static \Illuminate\Database\Query\Builder|\App\Server withTrashed()
* @method static \Illuminate\Database\Query\Builder|\App\Server withoutTrashed()
*/
class Server extends \Eloquent {}
}
namespace App{
/**
* App\User
*
* @property int $id
* @property string $username
* @property string $password
* @property string $email
* @property string|null $game_password
* @property string $ip_address
* @property string $game_address
* @property int $is_admin
* @property int|null $learning_step
* @property string|null $webserver
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property string|null $deleted_at
* @property-read \Illuminate\Notifications\DatabaseNotificationCollection|\Illuminate\Notifications\DatabaseNotification[] $notifications
* @property-read int|null $notifications_count
* @property-read \Illuminate\Database\Eloquent\Collection|\App\Server[] $servers
* @property-read int|null $servers_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 whereDeletedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereEmail($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereGameAddress($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereGamePassword($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereIpAddress($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereIsAdmin($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereLearningStep($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User wherePassword($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereUsername($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereWebserver($value)
*/
class User extends \Eloquent {}
}