Skip to content

Commit 34f6358

Browse files
author
Kevin Lucich
committed
Release v1.0.0
1 parent b4c61dc commit 34f6358

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

src/Eloquent/Model.php

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,12 @@
1010
use Illuminate\Database\Eloquent\Model as EloquentModel;
1111

1212
/**
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+
*
1716
* @method static Collection keyBy(string $column)
1817
*
19-
* @method static static[] cursor()
18+
* @method static EloquentBuilder|static query()
2019
* @method static Builder select(string|array $columns)
2120
* @method static Builder distinct(array $columns)
2221
* @method static Builder selectRaw(string $query,array $bindings=[])
@@ -39,12 +38,11 @@
3938
* @method static Builder having(string $column, string $condition, mixed $value=null)
4039
* @method static Builder havingBetween(string $column, array $values )
4140
*
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)
4444
* @method update(array $set)
4545
* @method delete()
46-
* @method static firstOrCreate(array $values=[])
47-
* @method static updateOrCreate(array $where, array $set=[])
4846
*
4947
* @method bool save(array $options=[])
5048
*/

0 commit comments

Comments
 (0)