|
10 | 10 | use Illuminate\Database\Eloquent\Model as EloquentModel;
|
11 | 11 |
|
12 | 12 | /**
|
13 |
| - * @method static static find($id) |
14 |
| - * @method static static findOrFail($id) |
15 |
| - * @method static static firstWhere(array $conditions) |
16 |
| - * @method static array|Collection pluck(string $column) |
| 13 | + * @mixin EloquentBuilder |
| 14 | + * @method static static[] cursor() |
| 15 | + * |
17 | 16 | * @method static Collection keyBy(string $column)
|
18 | 17 | *
|
19 |
| - * @method static static[] cursor() |
| 18 | + * @method static EloquentBuilder|static query() |
20 | 19 | * @method static Builder select(string|array $columns)
|
21 | 20 | * @method static Builder distinct(array $columns)
|
22 | 21 | * @method static Builder selectRaw(string $query,array $bindings=[])
|
|
39 | 38 | * @method static Builder having(string $column, string $condition, mixed $value=null)
|
40 | 39 | * @method static Builder havingBetween(string $column, array $values )
|
41 | 40 | *
|
42 |
| - * @method static create(array $values) |
43 |
| - * @method static insert(array $values) |
| 41 | + * @method static static create(array $attributes=[]) |
| 42 | + * @method static static forceCreate(array $attributes) |
| 43 | + * @method static insert(array $attributes) |
44 | 44 | * @method update(array $set)
|
45 | 45 | * @method delete()
|
46 |
| - * @method static firstOrCreate(array $values=[]) |
47 |
| - * @method static updateOrCreate(array $where, array $set=[]) |
48 | 46 | *
|
49 | 47 | * @method bool save(array $options=[])
|
50 | 48 | */
|
|
0 commit comments