This repository has been archived by the owner on Oct 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_ide_helper_models.php
77 lines (72 loc) · 3.08 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
<?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\Task
*
* @property int $id
* @property string $title
* @property int $todoListId
* @property string|null $completedAt
* @property \Carbon\Carbon|null $createdAt
* @property \Carbon\Carbon|null $updatedAt
* @property-read \App\Todolist $todolist
* @method static \Illuminate\Database\Eloquent\Builder|\App\Task whereCompletedAt($value)
* @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 whereTitle($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Task whereTodoListId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Task whereUpdatedAt($value)
*/
class Task extends \Eloquent {}
}
namespace App{
/**
* App\Todolist
*
* @property int $id
* @property int $userId
* @property string $title
* @property string $description
* @property \Carbon\Carbon|null $createdAt
* @property \Carbon\Carbon|null $updatedAt
* @property-read \Illuminate\Database\Eloquent\Collection|\App\Task[] $tasks
* @property-read \App\User $user
* @method static \Illuminate\Database\Eloquent\Builder|\App\Todolist whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Todolist whereDescription($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Todolist whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Todolist whereTitle($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Todolist whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Todolist whereUserId($value)
*/
class Todolist extends \Eloquent {}
}
namespace App{
/**
* App\User
*
* @property int $id
* @property string $name
* @property string $email
* @property string $password
* @property string|null $rememberToken
* @property \Carbon\Carbon|null $createdAt
* @property \Carbon\Carbon|null $updatedAt
* @property-read \Illuminate\Notifications\DatabaseNotificationCollection|\Illuminate\Notifications\DatabaseNotification[] $notifications
* @property-read \Illuminate\Database\Eloquent\Collection|\App\Todolist[] $todolists
* @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 {}
}