@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | { |
56 | 56 | $CSRInfo = $this->decodeCSR(); |
57 | 57 | $domain = $CSRInfo['subject']['CN']; |
58 | - $URL = 'http://' . $domain . "/" . $this->getmd5() . '.txt'; |
|
58 | + $URL = 'http://'.$domain."/".$this->getmd5().'.txt'; |
|
59 | 59 | |
60 | 60 | $client = new Client(); |
61 | 61 | |
@@ -65,13 +65,13 @@ discard block |
||
65 | 65 | return false; |
66 | 66 | } |
67 | 67 | |
68 | - $response = "" . $request->getBody(); |
|
68 | + $response = "".$request->getBody(); |
|
69 | 69 | return $this->checkDVC($response); |
70 | 70 | } |
71 | 71 | |
72 | 72 | public function generateDVC() |
73 | 73 | { |
74 | - $DVC = $this->getSHA1() . "\n"; |
|
74 | + $DVC = $this->getSHA1()."\n"; |
|
75 | 75 | $DVC .= "comodoca.com\n"; |
76 | 76 | |
77 | 77 | return $DVC; |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | //Check if last character is not a new line |
90 | 90 | if (substr($response, -1) !== "\n") { |
91 | 91 | //Add said new line |
92 | - $response = $response . "\n"; |
|
92 | + $response = $response."\n"; |
|
93 | 93 | } |
94 | 94 | |
95 | 95 | //Check it again |