Skip to content

Commit 8bdd695

Browse files
committed
[Intl] [Workflow] fixes English grammar typos
1 parent f99b966 commit 8bdd695

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

MarkingStore/MethodMarkingStore.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public function getMarking($subject)
5151
$method = 'get'.ucfirst($this->property);
5252

5353
if (!method_exists($subject, $method)) {
54-
throw new LogicException(sprintf('The method "%s::%s()" does not exists.', \get_class($subject), $method));
54+
throw new LogicException(sprintf('The method "%s::%s()" does not exist.', \get_class($subject), $method));
5555
}
5656

5757
$marking = $subject->{$method}();
@@ -81,7 +81,7 @@ public function setMarking($subject, Marking $marking, array $context = [])
8181
$method = 'set'.ucfirst($this->property);
8282

8383
if (!method_exists($subject, $method)) {
84-
throw new LogicException(sprintf('The method "%s::%s()" does not exists.', \get_class($subject), $method));
84+
throw new LogicException(sprintf('The method "%s::%s()" does not exist.', \get_class($subject), $method));
8585
}
8686

8787
$subject->{$method}($marking, $context);

0 commit comments

Comments
 (0)