Skip to content

Commit

Permalink
MNT Add new param to test class
Browse files Browse the repository at this point in the history
  • Loading branch information
emteknetnz committed Apr 24, 2024
1 parent d3e0eb3 commit f248d93
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions tests/MultiValueFieldTest_DataObject.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,13 @@ class MultiValueFieldTest_DataObject extends \SilverStripe\ORM\DataObject implem
'MVField' => 'MultiValueField'
);

public function write($showDebug = false, $forceInsert = false, $forceWrite = false, $writeComponents = false)
{
public function write(
$showDebug = false,
$forceInsert = false,
$forceWrite = false,
$writeComponents = false,
bool $skipValidation = false
) {
parent::write($showDebug, $forceInsert, $forceWrite, $writeComponents);
}
}

0 comments on commit f248d93

Please sign in to comment.