-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_ide_helper_models.php
33 lines (29 loc) · 1.14 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
<?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 <[email protected]>
*/
namespace App\Models{
/**
* App\Models\Result
*
* @property int $id
* @property string $uuid
* @property array $data
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @method static \Illuminate\Database\Eloquent\Builder|Result newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Result newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Result query()
* @method static \Illuminate\Database\Eloquent\Builder|Result whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Result whereData($value)
* @method static \Illuminate\Database\Eloquent\Builder|Result whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Result whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Result whereUuid($value)
*/
class Result extends \Eloquent {}
}