Skip to content

Commit 030c1d4

Browse files
committed
Fixed ArrayContainer exception message
1 parent c6c4112 commit 030c1d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/batch/src/Test/ArrayContainer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public function __construct(
2424
public function get(string $id): mixed
2525
{
2626
if (!isset($this->container[$id])) {
27-
$message = \sprintf('You have requested a non-existent container entrt "%s".', $id);
27+
$message = \sprintf('You have requested a non-existent container entry "%s".', $id);
2828

2929
throw new class($message) extends Exception implements NotFoundExceptionInterface {
3030
};

0 commit comments

Comments
 (0)