MDL-65204 phpunit: Fix valid CiBoT errors and warnings

This commit is contained in:
Jun Pataleta
2019-04-03 10:44:24 +08:00
parent 032c75ec43
commit 6bcc5dfdb4
3 changed files with 6 additions and 3 deletions
@@ -47,7 +47,8 @@ class phpunit_constraint_object_is_equal_with_exceptions extends PHPUnit\Framewo
/**
* Override constructor to capture value
*/
public function __construct($value, float $delta = 0.0, int $maxDepth = 10, bool $canonicalize = false, bool $ignoreCase = false) {
public function __construct($value, float $delta = 0.0, int $maxDepth = 10, bool $canonicalize = false,
bool $ignoreCase = false) {
parent::__construct($value, $delta, $maxDepth, $canonicalize, $ignoreCase);
$this->capturedvalue = $value;
}