Skip to content

Commit

Permalink
Text, Textarea, Link placeholder support
Browse files Browse the repository at this point in the history
  • Loading branch information
yarovikov committed Dec 29, 2024
1 parent bea4b3e commit fc6f1df
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Editor/GutengoodBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public function addFile(string $name, array $args = []): self
* Link component
*
* @param string $name The name of the component.
* @param array $args (string label, bool use_title)
* @param array $args (string label, string placeholder, bool use_title)
*
* @return self
*/
Expand All @@ -83,7 +83,7 @@ public function addLink(string $name, array $args = []): self
* Text control component
*
* @param string $name The name of the component.
* @param array $args (string label, string help, string value)
* @param array $args (string label, string help, string value, string placeholder)
*
* @return self
*/
Expand All @@ -96,7 +96,7 @@ public function addText(string $name, array $args = []): self
* Textarea control component
*
* @param string $name The name of the component.
* @param array $args (string label, string help, string value)
* @param array $args (string label, string help, string value, string placeholder)
*
* @return self
*/
Expand Down

0 comments on commit fc6f1df

Please sign in to comment.