Passed
Push — master ( abec97...4a93fc )
by Marco
03:29 queued 10s
created
src/Comodojo/Zip/Base/StatusCodes.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
      */
67 67
     public static function get(int $code): string
68 68
     {
69
-        if (array_key_exists($code, self::ZIP_STATUS_CODES)) {
69
+        if ( array_key_exists($code, self::ZIP_STATUS_CODES) ) {
70 70
             return self::ZIP_STATUS_CODES[$code];
71 71
         }
72 72
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,8 +22,7 @@
 block discarded – undo
22 22
  * THE SOFTWARE.
23 23
  */
24 24
 
25
-class StatusCodes
26
-{
25
+class StatusCodes {
27 26
 
28 27
     /**
29 28
      * Array of well known zip status codes
Please login to merge, or discard this patch.