Passed
Branch master (0c9a9a)
by Rogier
01:51
created
Category
src/Support/OpenSsl.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
     {
25 25
         $dn = ['commonName' => $domains[0]];
26 26
 
27
-        $san = implode(",", array_map(function ($dns) {
27
+        $san = implode(",", array_map(function($dns) {
28 28
             return 'DNS:' . $dns;
29 29
         }, $domains));
30 30
 
Please login to merge, or discard this patch.
src/Endpoints/Account.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@
 block discarded – undo
83 83
             throw new RuntimeException('Key type is not supported.');
84 84
         }
85 85
 
86
-        if(!is_dir($this->client->getAccountKeysPath())) {
86
+        if (!is_dir($this->client->getAccountKeysPath())) {
87 87
             mkdir($this->client->getAccountKeysPath());
88 88
         }
89 89
 
Please login to merge, or discard this patch.