Passed
Push — master ( ef9b56...6a1706 )
by Marijan
01:35
created
src/DBAL/Types/EnumType.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
     private function ensureEnumClassIsSetAndValid(): void
94 94
     {
95 95
         if (is_string($this->enumClass)) {
96
-            return ;
96
+            return;
97 97
         }
98 98
 
99 99
         $enumClass = $this->enumClass();
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
     private function ensureEnumLengthsAreValid(): void
107 107
     {
108 108
         if ($this->checkedForNameLengths) {
109
-            return ;
109
+            return;
110 110
         }
111 111
 
112 112
         $columnLength = $this->columnLength();
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
         $elementName = $this->enumToDatabaseValue($element);
122 122
 
123 123
         if (strlen($elementName) <= $columnLength) {
124
-            return ;
124
+            return;
125 125
         }
126 126
 
127 127
         throw new LogicException(
Please login to merge, or discard this patch.