Completed
Push — master ( 8dbad0...facf10 )
by Chris
02:35
created
src/ComodoDecodeCSR.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     {
55 55
         $CSRInfo = $this->decodeCSR();
56 56
         $domain = $CSRInfo['subject']['CN'];
57
-        $URL = 'http://' . $domain . "/" . $this->getmd5() . '.txt';
57
+        $URL = 'http://'.$domain."/".$this->getmd5().'.txt';
58 58
 
59 59
         $client = new Client();
60 60
 
@@ -64,13 +64,13 @@  discard block
 block discarded – undo
64 64
             return false;
65 65
         }
66 66
         
67
-        $responce = "" . $request->getBody();
67
+        $responce = "".$request->getBody();
68 68
         return ($responce === $this->generateDVC());
69 69
     }
70 70
 
71 71
     public function generateDVC()
72 72
     {
73
-        $DVC = $this->getSHA1() . "\n";
73
+        $DVC = $this->getSHA1()."\n";
74 74
         $DVC .= "comodoca.com\n";
75 75
 
76 76
         return $DVC;
Please login to merge, or discard this patch.
tests/bootstrap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,4 +7,4 @@
 block discarded – undo
7 7
  * @link       https://github.com/XigenChris/ComodoDecodeCSR
8 8
  */
9 9
 
10
-require __DIR__ . '/../vendor/autoload.php';
10
+require __DIR__.'/../vendor/autoload.php';
Please login to merge, or discard this patch.