From 21e3ffd9af8e928dac1237c4d12a74730cd71da3 Mon Sep 17 00:00:00 2001 From: bwaidelich Date: Fri, 11 Aug 2023 11:19:41 +0200 Subject: [PATCH] Cosmetic change to satisfy linter --- .../Classes/Projection/CatchUpOptions.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Neos.ContentRepository.Core/Classes/Projection/CatchUpOptions.php b/Neos.ContentRepository.Core/Classes/Projection/CatchUpOptions.php index 09679cd6d1c..9d89baf2980 100644 --- a/Neos.ContentRepository.Core/Classes/Projection/CatchUpOptions.php +++ b/Neos.ContentRepository.Core/Classes/Projection/CatchUpOptions.php @@ -30,8 +30,7 @@ private function __construct( */ public static function create( SequenceNumber|int|null $maximumSequenceNumber = null, - ): self - { + ): self { if (is_int($maximumSequenceNumber)) { $maximumSequenceNumber = SequenceNumber::fromInteger($maximumSequenceNumber); }