Skip to content

Commit 3cb9129

Browse files
committed
Remove unnecessary docblocks
1 parent 922c0b4 commit 3cb9129

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

src/Html/FormBuilder.php

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -416,12 +416,6 @@ protected function setQuickTextAreaSize(array $options): array
416416
*
417417
* Icons are detected when the second array element doesn't contain a dot (.).
418418
* Images are detected when the second array element contains a dot (.).
419-
*
420-
* @param string $name The name attribute for the select element
421-
* @param array $list The options list (see above for supported formats)
422-
* @param string|array|null $selected The selected value(s)
423-
* @param array $options Additional HTML attributes for the select element
424-
* @return string The generated HTML select element
425419
*/
426420
public function select(string $name, array $list = [], string|array|null $selected = null, array $options = []): string
427421
{
@@ -502,11 +496,6 @@ public function selectMonth(string $name, string|array|null $selected = null, ar
502496
* - If $display is an array with string keys, creates an optgroup
503497
* - If $display is an array with numeric keys (e.g., ['Label', 'icon']), creates a single option with icon/image
504498
* - If $display is a string, creates a simple option
505-
*
506-
* @param string|array $display The display value or array for optgroup/icon/image
507-
* @param string $value The option value attribute
508-
* @param string|array|null $selected The selected value(s)
509-
* @return string The generated HTML option or optgroup element
510499
*/
511500
public function getSelectOption(string|array $display, string $value, string|array|null $selected = null): string
512501
{
@@ -540,11 +529,6 @@ protected function optionGroup(array $list, string $label, string|array|null $se
540529
* If $display is an array in the format ['Label', 'icon-or-image'], adds data attributes:
541530
* - data-icon: added if the second element doesn't contain a dot (e.g., 'icon-refresh')
542531
* - data-image: added if the second element contains a dot (e.g., 'image.png')
543-
*
544-
* @param string|array $display The display label or array with label and icon/image
545-
* @param string $value The option value attribute
546-
* @param string|array|null $selected The selected value(s)
547-
* @return string The generated HTML option element
548532
*/
549533
protected function option(string|array $display, string $value, string|array|null $selected = null): string
550534
{

0 commit comments

Comments
 (0)