From 52466d2bcb8a394e4515faab1a6147aa74f6e3c2 Mon Sep 17 00:00:00 2001 From: Jens Giessmann Date: Wed, 29 Jun 2022 07:13:43 +0200 Subject: [PATCH] typo fix --- traits/RequestParamActionTrait.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/traits/RequestParamActionTrait.php b/traits/RequestParamActionTrait.php index 5c67707..d1e6de3 100644 --- a/traits/RequestParamActionTrait.php +++ b/traits/RequestParamActionTrait.php @@ -21,13 +21,13 @@ /** * This trait will enable auto fetching request params to append matching JSON for request param's json editor * - * USUAGE / HOW IT WORKS: + * USAGE / HOW IT WORKS: * * To enable for a specific controller, use this trait in the desired controller * - * By default it will generate a text field per action parameter. + * By default, it will generate a text field per action parameter. * - * For customization you can create a public method for each individual action parameter by adding a method which name + * For customization, you can create a public method for each individual action parameter by adding a method which name * have to follow this schema: * * `camelizedActionId` + ActionParam + `ParameterName` @@ -37,7 +37,7 @@ * * Example: detailActionParamProductId * - * This method must return a array (key-value pairs), where the keys should refer to the actual value and the value will + * This method must return an array (key-value pairs), where the keys should refer to the actual value and the value will * be the label * * Example: @@ -63,7 +63,7 @@ * return true; * } * - * This will generate a input with defined title for an *existing* parameter + * This will generate an input with defined title for an *existing* parameter * * - If property is NOT optional, it will be set as required in json schema. * However, since this only implies that the property must be set in the data, but not that a value must also be set,