Skip to content

Commit

Permalink
comp 2 test
Browse files Browse the repository at this point in the history
  • Loading branch information
semteacher committed Jun 14, 2024
1 parent 7aed4e7 commit 4dba7f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions classes/option/field_base.php
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ public static function get_subfields() {
*
* @param stdClass $formdata
* @param field_base $self // Should always be given. Otherwise this will not
* @param ?object $mockdata // Only needed if there the object needs params for the save_data function.
* @param mixed $mockdata // Only needed if there the object needs params for the save_data function.
* @param string $key
* @param mixed $value
*
Expand All @@ -200,9 +200,9 @@ public static function get_subfields() {
public function check_for_changes(
stdClass $formdata,
field_base $self,
?object $mockdata = null,
$mockdata = '',
string $key = '',
mixed $value = null): array {
$value = ''): array {

if (!isset($self)) {
return [];
Expand Down

0 comments on commit 4dba7f0

Please sign in to comment.