Skip to content

Commit f1dce66

Browse files
author
Bart Brouwer
committed
[Workflow] Fix typo in MethodMarkingStore
1 parent 4334b46 commit f1dce66

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

MarkingStore/MethodMarkingStore.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ public function getMarking($subject): Marking
5858
try {
5959
$marking = $subject->{$method}();
6060
} catch (\Error $e) {
61-
$unInitializedPropertyMassage = sprintf('Typed property %s::$%s must not be accessed before initialization', get_debug_type($subject), $this->property);
62-
if ($e->getMessage() !== $unInitializedPropertyMassage) {
61+
$unInitializedPropertyMessage = sprintf('Typed property %s::$%s must not be accessed before initialization', get_debug_type($subject), $this->property);
62+
if ($e->getMessage() !== $unInitializedPropertyMessage) {
6363
throw $e;
6464
}
6565
}

0 commit comments

Comments
 (0)