Passed
Push — master ( 3c3171...0f8e8e )
by Damien
03:36
created
src/Model/Entry.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -157,7 +157,7 @@
 block discarded – undo
157 157
      */
158 158
     public function getDiffs(bool $includeMedadata = false): ?array
159 159
     {
160
-        $diffs = $this->sort(json_decode($this->diffs, true));  // @phpstan-ignore-line
160
+        $diffs = $this->sort(json_decode($this->diffs, true)); // @phpstan-ignore-line
161 161
         if (!$includeMedadata) {
162 162
             unset($diffs['@source']);
163 163
         }
Please login to merge, or discard this patch.
src/Provider/Doctrine/Auditing/Transaction/AuditTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
 
73 73
         switch ($type->getName()) {
74 74
             case DoctrineHelper::getDoctrineType('BIGINT'):
75
-                $convertedValue = (string) $value;  // @phpstan-ignore-line
75
+                $convertedValue = (string) $value; // @phpstan-ignore-line
76 76
 
77 77
                 break;
78 78
             case DoctrineHelper::getDoctrineType('INTEGER'):
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
             case 'uuid':
92 92
             case 'ulid':
93 93
                 // Ramsey UUID / Symfony UID (UUID/ULID)
94
-                $convertedValue = (string) $value;  // @phpstan-ignore-line
94
+                $convertedValue = (string) $value; // @phpstan-ignore-line
95 95
 
96 96
                 break;
97 97
             case DoctrineHelper::getDoctrineType('BINARY'):
Please login to merge, or discard this patch.