This repository has been archived by the owner on Dec 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_ide_helper_models.php
111 lines (105 loc) · 4.95 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
<?php
/**
* 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\Category
*
* @property string $id
* @property string $name
* @property string $user_id
* @property \Carbon\Carbon|null $created_at
* @property \Carbon\Carbon|null $updated_at
* @property-read \App\User $creator
* @property-read \Illuminate\Database\Eloquent\Collection|\App\Group[] $groups
* @method static \Illuminate\Database\Eloquent\Builder|\App\Category whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Category whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Category whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Category whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Category whereUserId($value)
*/
class Category extends \Eloquent {}
}
namespace App{
/**
* App\User
*
* @property string $id
* @property string $first_name
* @property string $middle_name
* @property string $last_name
* @property string $email
* @property string $password
* @property string|null $user_id
* @property string|null $remember_token
* @property \Carbon\Carbon|null $created_at
* @property \Carbon\Carbon|null $updated_at
* @property-read \Illuminate\Database\Eloquent\Collection|\App\Category[] $createdCategories
* @property-read \Illuminate\Database\Eloquent\Collection|\App\Group[] $createdGroups
* @property-read \Illuminate\Database\Eloquent\Collection|\App\User[] $createdUsers
* @property-read \App\User|null $creator
* @property-read \Illuminate\Database\Eloquent\Collection|\App\Group[] $groups
* @property-read \Illuminate\Notifications\DatabaseNotificationCollection|\Illuminate\Notifications\DatabaseNotification[] $notifications
* @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 whereFirstName($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereLastName($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereMiddleName($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)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereUserId($value)
*/
class User extends \Eloquent {}
}
namespace App{
/**
* App\Group
*
* @property string $id
* @property string $name
* @property int $is_admin
* @property string $user_id
* @property \Carbon\Carbon|null $created_at
* @property \Carbon\Carbon|null $updated_at
* @property-read \Illuminate\Database\Eloquent\Collection|\App\Category[] $categories
* @property-read \App\User $creator
* @property-read \Illuminate\Database\Eloquent\Collection|\App\User[] $users
* @method static \Illuminate\Database\Eloquent\Builder|\App\Group whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Group whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Group whereIsAdmin($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Group whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Group whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Group whereUserId($value)
*/
class Group extends \Eloquent {}
}
namespace App{
/**
* App\RoleAssignment
*
* @property string $id
* @property string $relation_from_id
* @property string $relation_from_type
* @property string $relation_to_id
* @property string $relation_to_type
* @property string|null $user_id
* @property \Carbon\Carbon|null $created_at
* @property \Carbon\Carbon|null $updated_at
* @method static \Illuminate\Database\Eloquent\Builder|\App\RoleAssignment whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\RoleAssignment whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\RoleAssignment whereRelationFromId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\RoleAssignment whereRelationFromType($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\RoleAssignment whereRelationToId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\RoleAssignment whereRelationToType($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\RoleAssignment whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\RoleAssignment whereUserId($value)
*/
class RoleAssignment extends \Eloquent {}
}