Skip to content

Commit b0e234d

Browse files
timesincenicolas-grekas
authored andcommitted
chore: fix some typos
Signed-off-by: timesince <seekseat@icloud.com>
1 parent d0492d6 commit b0e234d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Tests/InputBagTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public function __toString(): string
7878
$this->assertSame('foo', $bag->getString('unknown', 'foo'), '->getString() returns the default if a parameter is not defined');
7979
$this->assertSame('1', $bag->getString('bool_true'), '->getString() returns "1" if a parameter is true');
8080
$this->assertSame('', $bag->getString('bool_false', 'foo'), '->getString() returns an empty empty string if a parameter is false');
81-
$this->assertSame('strval', $bag->getString('stringable'), '->getString() gets a value of a stringable paramater as string');
81+
$this->assertSame('strval', $bag->getString('stringable'), '->getString() gets a value of a stringable parameter as string');
8282
}
8383

8484
public function testGetStringExceptionWithArray()

Tests/ParameterBagTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ public function __toString(): string
226226
$this->assertSame('foo', $bag->getString('unknown', 'foo'), '->getString() returns the default if a parameter is not defined');
227227
$this->assertSame('1', $bag->getString('bool_true'), '->getString() returns "1" if a parameter is true');
228228
$this->assertSame('', $bag->getString('bool_false', 'foo'), '->getString() returns an empty empty string if a parameter is false');
229-
$this->assertSame('strval', $bag->getString('stringable'), '->getString() gets a value of a stringable paramater as string');
229+
$this->assertSame('strval', $bag->getString('stringable'), '->getString() gets a value of a stringable parameter as string');
230230
}
231231

232232
public function testGetStringExceptionWithArray()

0 commit comments

Comments
 (0)