@@ -93,7 +93,7 @@ discard block |
||
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 |
||
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 |
||
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( |