-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_ide_helper_models.php
More file actions
75 lines (70 loc) · 2.95 KB
/
_ide_helper_models.php
File metadata and controls
75 lines (70 loc) · 2.95 KB
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
<?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 <barryvdh@gmail.com>
*/
namespace App{
/**
* App\Post
*
* @property int $id
* @property int $user_id
* @property string $title
* @property string $body
* @property \Carbon\Carbon|null $created_at
* @property \Carbon\Carbon|null $updated_at
* @method static \Illuminate\Database\Eloquent\Builder|\App\Post whereBody($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Post whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Post whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Post whereTitle($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Post whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Post whereUserId($value)
*/
class Post extends \Eloquent {}
}
namespace App{
/**
* App\User
*
* @property int $id
* @property string $name
* @property string $email
* @property string $password
* @property string|null $remember_token
* @property \Carbon\Carbon|null $created_at
* @property \Carbon\Carbon|null $updated_at
* @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 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)
*/
class User extends \Eloquent {}
}
namespace App{
/**
* App\Activity
*
* @property int $id
* @property int $subject_id
* @property string $subject_type
* @property string $name
* @property int $user_id
* @property \Carbon\Carbon|null $created_at
* @property \Carbon\Carbon|null $updated_at
* @method static \Illuminate\Database\Eloquent\Builder|\App\Activity whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Activity whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Activity whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Activity whereSubjectId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Activity whereSubjectType($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Activity whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Activity whereUserId($value)
*/
class Activity extends \Eloquent {}
}