Skip to content

Commit

Permalink
Fix(deprecation) Optional parameter declared before required paramete…
Browse files Browse the repository at this point in the history
…r is implicitly treated as a required parameter
  • Loading branch information
thirsch committed May 4, 2024
1 parent 998e779 commit 73ce58f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/form/sfFormField.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class sfFormField
* @param string $value The field value
* @param sfValidatorError $error A sfValidatorError instance
*/
public function __construct(sfWidgetForm $widget, ?sfFormField $parent = null, $name, $value, ?sfValidatorError $error = null)
public function __construct(sfWidgetForm $widget, ?sfFormField $parent = null, $name = null, $value = null, ?sfValidatorError $error = null)
{
$this->widget = $widget;
$this->parent = $parent;
Expand Down
2 changes: 1 addition & 1 deletion lib/form/sfFormFieldSchema.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class sfFormFieldSchema extends sfFormField implements ArrayAccess, Iterator, Co
* @param string $value The field value
* @param sfValidatorError $error A sfValidatorError instance
*/
public function __construct(sfWidgetFormSchema $widget, ?sfFormField $parent = null, $name, $value, ?sfValidatorError $error = null)
public function __construct(sfWidgetFormSchema $widget, ?sfFormField $parent = null, $name = null, $value = null, ?sfValidatorError $error = null)
{
parent::__construct($widget, $parent, $name, $value, $error);

Expand Down

0 comments on commit 73ce58f

Please sign in to comment.