@@ -24,7 +24,7 @@ |
||
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 |
@@ -83,7 +83,7 @@ |
||
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 |