mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-18 01:57:13 +00:00
Correct Fluent helper output (#445)
'references()' and 'on()' argument names were backwards
This commit is contained in:
committed by
Barry vd. Heuvel
parent
8c306035aa
commit
963ead0a01
@@ -59,11 +59,11 @@ namespace Illuminate\Support {
|
|||||||
* @method Fluent default(mixed $value) Add the default modifier
|
* @method Fluent default(mixed $value) Add the default modifier
|
||||||
* @method Fluent first() Select first row
|
* @method Fluent first() Select first row
|
||||||
* @method Fluent index(string $name = null) Add the in dex clause
|
* @method Fluent index(string $name = null) Add the in dex clause
|
||||||
* @method Fluent on(string $column) `on` of a foreign key
|
* @method Fluent on(string $table) `on` of a foreign key
|
||||||
* @method Fluent onDelete(string $action) `on delete` of a foreign key
|
* @method Fluent onDelete(string $action) `on delete` of a foreign key
|
||||||
* @method Fluent onUpdate(string $action) `on update` of a foreign key
|
* @method Fluent onUpdate(string $action) `on update` of a foreign key
|
||||||
* @method Fluent primary() Add the primary key modifier
|
* @method Fluent primary() Add the primary key modifier
|
||||||
* @method Fluent references(string $table) `references` of a foreign key
|
* @method Fluent references(string $column) `references` of a foreign key
|
||||||
* @method Fluent nullable() Add the nullable modifier
|
* @method Fluent nullable() Add the nullable modifier
|
||||||
* @method Fluent unique(string $name = null) Add unique index clause
|
* @method Fluent unique(string $name = null) Add unique index clause
|
||||||
* @method Fluent unsigned() Add the unsigned modifier
|
* @method Fluent unsigned() Add the unsigned modifier
|
||||||
|
|||||||
Reference in New Issue
Block a user