Skip to content

Commit 1ea9b26

Browse files
committed
Merge branch '6.0' into 6.1
* 6.0: ignore the cached body when comparing e-mails for equality fix PHP syntax to be compatible with 7.2 and 7.3 [HttpFoundation] Add session ID regex comment [Workflow] Fix typo in MethodMarkingStore Fix CS
2 parents 644bcbe + 0645b21 commit 1ea9b26

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(object $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)