Completed
Pull Request — master (#393)
by Luc
18:01
created
src/EventSourcing/DomainMessageBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
88 88
             )
89 89
         );
90 90
 
91
-        $message =  new DomainMessage(
91
+        $message = new DomainMessage(
92 92
             $this->id ?? UUID::generateAsString(),
93 93
             $this->playhead ?? 1,
94 94
             $finalMetaData,
Please login to merge, or discard this patch.
src/SavedSearches/Properties/CreatedByQueryString.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,6 +25,6 @@
 block discarded – undo
25 25
      */
26 26
     private function generateQuery(): string
27 27
     {
28
-        return 'createdby:' . $this->userId->toNative();
28
+        return 'createdby:'.$this->userId->toNative();
29 29
     }
30 30
 }
Please login to merge, or discard this patch.
src/UiTID/CdbXmlCreatedByToUserIdResolver.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
             return $createdByIdentifier;
43 43
         } catch (InvalidNativeArgumentException $exception) {
44 44
             $this->logger->info(
45
-                'The provided createdByIdentifier ' . $createdByIdentifier->toNative() . ' is not a UUID.',
45
+                'The provided createdByIdentifier '.$createdByIdentifier->toNative().' is not a UUID.',
46 46
                 [
47 47
                     'exception' => $exception,
48 48
                 ]
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 
55 55
             if (!$userId) {
56 56
                 $this->logger->warning(
57
-                    'Unable to find user with identifier ' . $createdByIdentifier
57
+                    'Unable to find user with identifier '.$createdByIdentifier
58 58
                 );
59 59
             }
60 60
         } catch (Exception $e) {
Please login to merge, or discard this patch.