From d8de27f80413985584b4f55845208b34de36aa7a Mon Sep 17 00:00:00 2001 From: Cyperghost Date: Wed, 13 Nov 2024 10:17:50 +0100 Subject: [PATCH] `$fooFromContext` can be null --- docs/migration/wsc60/php.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/migration/wsc60/php.md b/docs/migration/wsc60/php.md index 5fde877a..a9518458 100644 --- a/docs/migration/wsc60/php.md +++ b/docs/migration/wsc60/php.md @@ -301,7 +301,7 @@ final class FooImageFileProcessor extends AbstractFileProcessor return true; } - if ($fooFromCoreFile->fooID === $fooFromContext->fooID) { + if ($fooFromCoreFile->fooID === $fooFromContext?->fooID) { return true; } -- 2.20.1