-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_ide_helper_models.php
95 lines (89 loc) · 4.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
<?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 <barryvdh@gmail.com>
*/
namespace App{
/**
* App\Flatshare
*
* @property int $id
* @property string $name
* @property int $tagid
* @property int $admin_id
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read \App\User $admin
* @property-read \Illuminate\Database\Eloquent\Collection|\App\User[] $users
* @property-read int|null $users_count
* @method static \Illuminate\Database\Eloquent\Builder|\App\Flatshare newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\Flatshare newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\Flatshare query()
* @method static \Illuminate\Database\Eloquent\Builder|\App\Flatshare whereAdminId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Flatshare whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Flatshare whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Flatshare whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Flatshare whereTagid($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Flatshare whereUpdatedAt($value)
*/
class Flatshare extends \Eloquent {}
}
namespace App{
/**
* App\Task
*
* @property int $id
* @property string $name
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @method static \Illuminate\Database\Eloquent\Builder|\App\Task newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\Task newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\Task query()
* @method static \Illuminate\Database\Eloquent\Builder|\App\Task whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Task whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Task whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Task whereUpdatedAt($value)
*/
class Task extends \Eloquent {}
}
namespace App{
/**
* App\User
*
* @property int $id
* @property string $givenname
* @property string $name
* @property string $username
* @property string $email
* @property \Illuminate\Support\Carbon|null $email_verified_at
* @property string $password
* @property string|null $api_token
* @property int|null $flatshare_id
* @property string|null $remember_token
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read \App\Flatshare|null $flatshare
* @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 whereApiToken($value)
* @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 whereFlatshareId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereGivenname($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)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereUsername($value)
*/
class User extends \Eloquent {}
}