Skip to content

Commit 52466d2

Browse files
committed
typo fix
1 parent 9c86981 commit 52466d2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

traits/RequestParamActionTrait.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121
/**
2222
* This trait will enable auto fetching request params to append matching JSON for request param's json editor
2323
*
24-
* USUAGE / HOW IT WORKS:
24+
* USAGE / HOW IT WORKS:
2525
*
2626
* To enable for a specific controller, use this trait in the desired controller
2727
*
28-
* By default it will generate a text field per action parameter.
28+
* By default, it will generate a text field per action parameter.
2929
*
30-
* For customization you can create a public method for each individual action parameter by adding a method which name
30+
* For customization, you can create a public method for each individual action parameter by adding a method which name
3131
* have to follow this schema:
3232
*
3333
* `camelizedActionId` + ActionParam + `ParameterName`
@@ -37,7 +37,7 @@
3737
*
3838
* Example: detailActionParamProductId
3939
*
40-
* This method must return a array (key-value pairs), where the keys should refer to the actual value and the value will
40+
* This method must return an array (key-value pairs), where the keys should refer to the actual value and the value will
4141
* be the label
4242
*
4343
* Example:
@@ -63,7 +63,7 @@
6363
* return true;
6464
* }
6565
*
66-
* This will generate a input with defined title for an *existing* parameter
66+
* This will generate an input with defined title for an *existing* parameter
6767
*
6868
* - If property is NOT optional, it will be set as required in json schema.
6969
* However, since this only implies that the property must be set in the data, but not that a value must also be set,

0 commit comments

Comments
 (0)