Passed
Push — master ( a343df...d20b40 )
by Tim
10:40
created
src/CryptoEncoding/PEM.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -45,10 +45,10 @@
 block discarded – undo
45 45
      */
46 46
     public const PEM_REGEX =
47 47
         '/' .
48
-        '(?:^|[\r\n])' .                 // line start
48
+        '(?:^|[\r\n])' . // line start
49 49
         '-----BEGIN (.+?)-----[\r\n]+' . // header
50
-        '(.+?)' .                        // payload
51
-        '[\r\n]+-----END \\1-----' .     // footer
50
+        '(.+?)' . // payload
51
+        '[\r\n]+-----END \\1-----' . // footer
52 52
         '/ms';
53 53
 
54 54
 
Please login to merge, or discard this patch.