-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_ide_helper_models.php
More file actions
132 lines (124 loc) · 3.87 KB
/
_ide_helper_models.php
File metadata and controls
132 lines (124 loc) · 3.87 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
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
<?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\Dislike
*
* @author James Davies <jaymo107@gmail.com>
* @link http://jamesdavies.me
* @created 29/11/2016 5:46 PM
* @class Likes
* @property string $user_id
* @property string $programme_id
* @method static \Illuminate\Database\Query\Builder|\App\Dislike whereUserId($value)
* @method static \Illuminate\Database\Query\Builder|\App\Dislike whereProgrammeId($value)
* @mixin \Eloquent
*/
class Dislike extends \Eloquent {}
}
namespace App{
/**
* App\Programme
*
* @author James Davies <jaymo107@gmail.com>
* @link http://jamesdavies.me
* @created 29/11/2016 5:46 PM
* @class Programme
* @mixin \Eloquent
*/
class History extends \Eloquent {}
}
namespace App{
/**
* App\Like
*
* @author James Davies <jaymo107@gmail.com>
* @link http://jamesdavies.me
* @created 29/11/2016 5:46 PM
* @class Likes
* @property string $user_id
* @property string $programme_id
* @method static \Illuminate\Database\Query\Builder|\App\Like whereUserId($value)
* @method static \Illuminate\Database\Query\Builder|\App\Like whereProgrammeId($value)
* @mixin \Eloquent
*/
class Like extends \Eloquent {}
}
namespace App{
/**
* App\Programme
*
* @author James Davies <jaymo107@gmail.com>
* @link http://jamesdavies.me
* @created 29/11/2016 5:46 PM
* @class Programme
* @property string $programme_id
* @property string $imdb_id
* @property string $type
* @property boolean $series
* @property string $genres
* @property string $actors
* @property string $poster
* @property string $rated
* @property string $rating
* @property string $writers
* @property string $director
* @property \Carbon\Carbon $created_at
* @property \Carbon\Carbon $updated_at
* @method static Builder|\App\Programme whereProgrammeId($value)
* @method static Builder|\App\Programme whereImdbId($value)
* @method static Builder|\App\Programme whereType($value)
* @method static Builder|\App\Programme whereSeries($value)
* @method static Builder|\App\Programme whereGenres($value)
* @method static Builder|\App\Programme whereActors($value)
* @method static Builder|\App\Programme wherePoster($value)
* @method static Builder|\App\Programme whereRated($value)
* @method static Builder|\App\Programme whereRating($value)
* @method static Builder|\App\Programme whereWriters($value)
* @method static Builder|\App\Programme whereDirector($value)
* @method static Builder|\App\Programme whereCreatedAt($value)
* @method static Builder|\App\Programme whereUpdatedAt($value)
* @mixin \Eloquent
* @property string $image
* @property string $programme_name
* @property-read mixed $likes
* @property-read mixed $dislikes
* @method static \Illuminate\Database\Query\Builder|\App\Programme whereImage($value)
* @method static \Illuminate\Database\Query\Builder|\App\Programme whereProgrammeName($value)
*/
class Programme extends \Eloquent {}
}
namespace App{
/**
* App\Dislike
*
* @author James Davies <jaymo107@gmail.com>
* @link http://jamesdavies.me
* @created 29/11/2016 5:46 PM
* @class Likes
* @property string $user_id
* @property string $programme_id
* @mixin Eloquent
* @property \Carbon\Carbon $created_at
* @property \Carbon\Carbon $updated_at
* @method static \Illuminate\Database\Query\Builder|\App\Recommendation whereUserId($value)
* @method static \Illuminate\Database\Query\Builder|\App\Recommendation whereProgrammeId($value)
* @method static \Illuminate\Database\Query\Builder|\App\Recommendation whereCreatedAt($value)
* @method static \Illuminate\Database\Query\Builder|\App\Recommendation whereUpdatedAt($value)
*/
class Recommendation extends \Eloquent {}
}
namespace App{
/**
* App\User
*
* @mixin \Eloquent
*/
class User extends \Eloquent {}
}