Completed
Push — master ( 8c69ff...4d7059 )
by Oliver
11s
created
src/Command/ValidateCommand.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
 
52 52
         $configuration = InputHandler::handleInput($input);
53 53
         if ($output->getVerbosity() >= OutputInterface::VERBOSITY_VERY_VERBOSE) {
54
-            $output->writeln(PHP_EOL . sprintf(
54
+            $output->writeln(PHP_EOL.sprintf(
55 55
                 'Configuration file loaded: %s',
56 56
                 $configuration->getFilename()
57 57
             ));
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 
60 60
         $suiteList = TestSuiteLoader::loadSuite($configuration);
61 61
         if (!count($suiteList)) {
62
-            $output->writeln(PHP_EOL . 'No tests found to validate.');
62
+            $output->writeln(PHP_EOL.'No tests found to validate.');
63 63
             return 0;
64 64
         }
65 65
 
@@ -73,10 +73,10 @@  discard block
 block discarded – undo
73 73
 
74 74
             $testClass = get_class($suite);
75 75
             $testMethod = $suite->getName(false);
76
-            $testSignature = $testClass . '::' . $suite->getName();
76
+            $testSignature = $testClass.'::'.$suite->getName();
77 77
 
78 78
             if ($output->getVerbosity() >= OutputInterface::VERBOSITY_DEBUG) {
79
-                $this->writeValidity($output, 'Validating ' . $testSignature . '...');
79
+                $this->writeValidity($output, 'Validating '.$testSignature.'...');
80 80
             }
81 81
 
82 82
             $isValid = Validator::isValidMethod(
Please login to merge, or discard this patch.