Skip to content

Commit 6023ec7

Browse files
Merge branch '6.4' into 7.2
* 6.4: fix tests chore: fix some typos update Couchbase mirror for Ubuntu 24.04
2 parents 371272a + b0e234d commit 6023ec7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Tests/InputBagTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public function __toString(): string
7171
$this->assertSame('foo', $bag->getString('unknown', 'foo'), '->getString() returns the default if a parameter is not defined');
7272
$this->assertSame('1', $bag->getString('bool_true'), '->getString() returns "1" if a parameter is true');
7373
$this->assertSame('', $bag->getString('bool_false', 'foo'), '->getString() returns an empty empty string if a parameter is false');
74-
$this->assertSame('strval', $bag->getString('stringable'), '->getString() gets a value of a stringable paramater as string');
74+
$this->assertSame('strval', $bag->getString('stringable'), '->getString() gets a value of a stringable parameter as string');
7575
}
7676

7777
public function testGetStringExceptionWithArray()

Tests/ParameterBagTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ public function __toString(): string
219219
$this->assertSame('foo', $bag->getString('unknown', 'foo'), '->getString() returns the default if a parameter is not defined');
220220
$this->assertSame('1', $bag->getString('bool_true'), '->getString() returns "1" if a parameter is true');
221221
$this->assertSame('', $bag->getString('bool_false', 'foo'), '->getString() returns an empty empty string if a parameter is false');
222-
$this->assertSame('strval', $bag->getString('stringable'), '->getString() gets a value of a stringable paramater as string');
222+
$this->assertSame('strval', $bag->getString('stringable'), '->getString() gets a value of a stringable parameter as string');
223223
}
224224

225225
public function testGetStringExceptionWithArray()

0 commit comments

Comments
 (0)