Skip to content

Commit

Permalink
docs: remove out of dated comments
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjis committed May 27, 2022
1 parent 5e754d6 commit 62441b9
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions system/Helpers/form_helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,6 @@ function set_value(string $field, $default = '', bool $htmlEscape = true)
* Set Select
*
* Let's you set the selected value of a <select> menu via data in the POST array.
* If Form Validation is active it retrieves the info from the validation class
*/
function set_select(string $field, string $value = '', bool $default = false): string
{
Expand Down Expand Up @@ -608,7 +607,6 @@ function set_select(string $field, string $value = '', bool $default = false): s
* Set Checkbox
*
* Let's you set the selected value of a checkbox via the value in the POST array.
* If Form Validation is active it retrieves the info from the validation class
*/
function set_checkbox(string $field, string $value = '', bool $default = false): string
{
Expand Down Expand Up @@ -646,7 +644,6 @@ function set_checkbox(string $field, string $value = '', bool $default = false):
* Set Radio
*
* Let's you set the selected value of a radio field via info in the POST array.
* If Form Validation is active it retrieves the info from the validation class
*/
function set_radio(string $field, string $value = '', bool $default = false): string
{
Expand Down

0 comments on commit 62441b9

Please sign in to comment.