Completed
Push — develop ( 819fb3...3b8721 )
by Chris
02:50
created
src/Console/Hashes.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,8 +36,8 @@
 block discarded – undo
36 36
         $hashes = $comodoDecodeCSR->fetchHashes();
37 37
 
38 38
         if ($hashes) {
39
-            $output->writeln('<info>MD5</info> ' . $hashes['md5']);
40
-            $output->writeln('<info>SHA1</info> ' . $hashes['sha1']);
39
+            $output->writeln('<info>MD5</info> '.$hashes['md5']);
40
+            $output->writeln('<info>SHA1</info> '.$hashes['sha1']);
41 41
 
42 42
             return 0;
43 43
         }
Please login to merge, or discard this patch.
src/Console/CreateFile.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,10 +42,10 @@
 block discarded – undo
42 42
             return 2;
43 43
         }
44 44
 
45
-        $output->writeln('<info>Filename:</info> ' . $hashes['md5'] . '.txt');
45
+        $output->writeln('<info>Filename:</info> '.$hashes['md5'].'.txt');
46 46
         $output->writeln('<info>Contents:</info>');
47 47
         $output->writeln($comodoDecodeCSR->generateDVC());
48
-        $output->writeln('<info>URL:</info> http://' . $comodoDecodeCSR->getCN() . '/' . $hashes['md5'] . '.txt');
48
+        $output->writeln('<info>URL:</info> http://'.$comodoDecodeCSR->getCN().'/'.$hashes['md5'].'.txt');
49 49
 
50 50
         return 0;
51 51
     }
Please login to merge, or discard this patch.