-
Notifications
You must be signed in to change notification settings - Fork 0
/
_ide_helper_models.php
233 lines (221 loc) · 10 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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
<?php
/**
* An 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 SmartBots{
/**
* SmartBots\Automation
*
* @property-read \SmartBots\User $user
* @property-read \Illuminate\Database\Eloquent\Collection|\SmartBots\AutomationPermission[] $automationpermissions
* @property-read \SmartBots\Hub $hub
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Automation activated()
*/
class Automation extends \Eloquent {}
}
namespace SmartBots{
/**
* SmartBots\AutomationPermission
*
*/
class AutomationPermission extends \Eloquent {}
}
namespace SmartBots{
/**
* SmartBots\Bot
*
* @property integer $id
* @property integer $hub_id
* @property string $name
* @property string $token
* @property string $image
* @property string $description
* @property boolean $type
* @property boolean $status
* @property boolean $true
* @property-read \SmartBots\Hub $hub
* @property-read \Illuminate\Database\Eloquent\Collection|\SmartBots\BotPermission[] $botpermissions
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Bot whereId($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Bot whereHubId($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Bot whereName($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Bot whereToken($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Bot whereImage($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Bot whereDescription($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Bot whereType($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Bot whereStatus($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Bot whereTrue($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Bot activated()
*/
class Bot extends \Eloquent {}
}
namespace SmartBots{
/**
* SmartBots\BotPermission
*
* @property integer $id
* @property integer $user_id
* @property integer $bot_id
* @property boolean $high
* @property-read \SmartBots\Bot $bot
* @property-read \SmartBots\User $user
* @method static \Illuminate\Database\Query\Builder|\SmartBots\BotPermission whereId($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\BotPermission whereUserId($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\BotPermission whereBotId($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\BotPermission whereHigh($value)
*/
class BotPermission extends \Eloquent {}
}
namespace SmartBots{
/**
* SmartBots\Hub
*
* @property integer $id
* @property string $token
* @property string $name
* @property string $image
* @property string $description
* @property string $timezone
* @property boolean $status
* @property-read \Illuminate\Database\Eloquent\Collection|\SmartBots\Bot[] $bots
* @property-read \Illuminate\Database\Eloquent\Collection|\SmartBots\Member[] $members
* @property-read \Illuminate\Database\Eloquent\Collection|\SmartBots\HubPermission[] $hubpermissions
* @property-read \Illuminate\Database\Eloquent\Collection|\SmartBots\Schedule[] $schedules
* @property-read \Illuminate\Database\Eloquent\Collection|\SmartBots\User[] $users
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Hub whereId($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Hub whereToken($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Hub whereName($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Hub whereImage($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Hub whereDescription($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Hub whereTimezone($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Hub whereStatus($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Hub activated()
*/
class Hub extends \Eloquent {}
}
namespace SmartBots{
/**
* SmartBots\HubPermission
*
* @property integer $id
* @property integer $user_id
* @property integer $hub_id
* @property integer $data
* @property-read \SmartBots\User $user
* @property-read \SmartBots\Hub $hub
* @method static \Illuminate\Database\Query\Builder|\SmartBots\HubPermission whereId($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\HubPermission whereUserId($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\HubPermission whereHubId($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\HubPermission whereData($value)
*/
class HubPermission extends \Eloquent {}
}
namespace SmartBots{
/**
* SmartBots\Member
*
* @property integer $id
* @property integer $user_id
* @property integer $hub_id
* @property boolean $status
* @property-read \SmartBots\Hub $hub
* @property-read \SmartBots\User $user
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Member whereId($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Member whereUserId($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Member whereHubId($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Member whereStatus($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Member activated()
*/
class Member extends \Eloquent {}
}
namespace SmartBots{
/**
* SmartBots\Schedule
*
* @property integer $id
* @property integer $hub_id
* @property string $name
* @property string $description
* @property string $action
* @property boolean $type
* @property string $data
* @property boolean $condition_type
* @property boolean $condition_method
* @property string $condition_data
* @property string $activate_after
* @property string $deactivate_after_times
* @property string $deactivate_after_datetime
* @property string $next_run_time
* @property boolean $status
* @property integer $ran_times
* @property-read \SmartBots\User $user
* @property-read \Illuminate\Database\Eloquent\Collection|\SmartBots\SchedulePermission[] $schedulepermissions
* @property-read \SmartBots\Hub $hub
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Schedule whereId($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Schedule whereHubId($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Schedule whereName($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Schedule whereDescription($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Schedule whereAction($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Schedule whereType($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Schedule whereData($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Schedule whereConditionType($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Schedule whereConditionMethod($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Schedule whereConditionData($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Schedule whereActivateAfter($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Schedule whereDeactivateAfterTimes($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Schedule whereDeactivateAfterDatetime($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Schedule whereNextRunTime($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Schedule whereStatus($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Schedule whereRanTimes($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\Schedule activated()
*/
class Schedule extends \Eloquent {}
}
namespace SmartBots{
/**
* SmartBots\SchedulePermission
*
* @property integer $id
* @property integer $user_id
* @property integer $schedule_id
* @property boolean $high
* @property-read \SmartBots\Schedule $schedule
* @property-read \SmartBots\User $user
* @method static \Illuminate\Database\Query\Builder|\SmartBots\SchedulePermission whereId($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\SchedulePermission whereUserId($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\SchedulePermission whereScheduleId($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\SchedulePermission whereHigh($value)
*/
class SchedulePermission extends \Eloquent {}
}
namespace SmartBots{
/**
* SmartBots\User
*
* @property integer $id
* @property string $username
* @property string $name
* @property string $email
* @property string $phone
* @property string $password
* @property string $avatar
* @property string $remember_token
* @property-read \Illuminate\Database\Eloquent\Collection|\SmartBots\Member[] $members
* @property-read \Illuminate\Database\Eloquent\Collection|\SmartBots\BotPermission[] $botpermissions
* @property-read \Illuminate\Database\Eloquent\Collection|\SmartBots\SchedulePermission[] $schedulepermissions
* @property-read \Illuminate\Database\Eloquent\Collection|\SmartBots\HubPermission[] $hubpermissions
* @property-read \Illuminate\Database\Eloquent\Collection|\SmartBots\Hub[] $hubs
* @method static \Illuminate\Database\Query\Builder|\SmartBots\User whereId($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\User whereUsername($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\User whereName($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\User whereEmail($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\User wherePhone($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\User wherePassword($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\User whereAvatar($value)
* @method static \Illuminate\Database\Query\Builder|\SmartBots\User whereRememberToken($value)
*/
class User extends \Eloquent {}
}