Passed
Push — master ( f4d83b...2e48e4 )
by Angel
53:25 queued 49:50
created
src/IPv4AddressConverter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
             throw new OutputFormatException();
164 164
         }
165 165
 
166
-        return match ($this->inputFormat) {
166
+        return match($this->inputFormat) {
167 167
             IPAddressFormat::BINARY => $this->getFromBinary(),
168 168
 
169 169
             IPAddressFormat::DECIMAL => $this->getFromDecimal(),
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
      */
232 232
     public function all(): object
233 233
     {
234
-        return match ($this->inputFormat) {
234
+        return match($this->inputFormat) {
235 235
             IPAddressFormat::BINARY => $this->getOutputFromBinaryAddress(),
236 236
 
237 237
             IPAddressFormat::DECIMAL => $this->getOutputFromDecimalAddress(),
Please login to merge, or discard this patch.