|  | @@ -51,7 +51,7 @@  discard block | 
                                                    
                                                        |  |  |  block discarded – undo | 
                                                                                                                                                                                                                    
                                                            | 51 | 51 |   | 
                                                                                                            
                                                            | 52 | 52 |          $configurationHolder = 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 |                  $configurationHolder->getFilename() | 
                                                                                                            
                                                            | 57 | 57 |              )); | 
                                                                                                                                                        
                                                        |  | @@ -59,7 +59,7 @@  discard block | 
                                                    
                                                        |  |  |  block discarded – undo | 
                                                                                                                                                                                                                    
                                                            | 59 | 59 |   | 
                                                                                                            
                                                            | 60 | 60 |          $testCollection = TestSuiteLoader::loadSuite($configurationHolder); | 
                                                                                                            
                                                            | 61 | 61 |          if ($testCollection->isEmpty()) { | 
                                                                                                            
                                                            | 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 |   | 
                                                                                                                                                        
                                                        |  | @@ -72,10 +72,10 @@  discard block | 
                                                    
                                                        |  |  |  block discarded – undo | 
                                                                                                                                                                                                                    
                                                            | 72 | 72 |   | 
                                                                                                            
                                                            | 73 | 73 |              $testClass = get_class($suite); | 
                                                                                                            
                                                            | 74 | 74 |              $testMethod = $suite->getName(false); | 
                                                                                                            
                                                            | 75 |  | -            $testSignature = $testClass . '::' . $suite->getName(); | 
                                                                                                            
                                                            |  | 75 | +            $testSignature = $testClass.'::'.$suite->getName(); | 
                                                                                                            
                                                            | 76 | 76 |   | 
                                                                                                            
                                                            | 77 | 77 |              if ($output->getVerbosity() >= OutputInterface::VERBOSITY_DEBUG) { | 
                                                                                                            
                                                            | 78 |  | -                $this->writeValidity($output, 'Validating ' . $testSignature . '...'); | 
                                                                                                            
                                                            |  | 78 | +                $this->writeValidity($output, 'Validating '.$testSignature.'...'); | 
                                                                                                            
                                                            | 79 | 79 |              } | 
                                                                                                            
                                                            | 80 | 80 |   | 
                                                                                                            
                                                            | 81 | 81 |              $isValid = Validator::isValidMethod( | 
                                                                                                                                                
                                         
                                        
                                            
                                                                                                    Please login to merge, or discard this patch.