11<?php
22
33/**
4- * Composer Plugin QA
4+ * Composer Plugin QA.
55 *
66 * @author Webysther Nunes <webysther@gmail.com>
77 */
8-
98namespace Webs \QA \Command ;
109
1110use Composer \Command \BaseCommand ;
1716use Symfony \Component \Console \Style \SymfonyStyle ;
1817
1918/**
20- * Run all tests, ignore short version
19+ * Run all tests, ignore short version.
2120 */
2221class All extends BaseCommand
2322{
2423 /**
25- * Console description
24+ * Console description.
2625 *
2726 * @var string
2827 */
2928 protected $ description = 'Run all tools ' ;
3029
3130 /**
32- * Console params configuration
33- *
34- * @return void
31+ * Console params configuration.
3532 */
3633 protected function configure ()
3734 {
@@ -46,11 +43,12 @@ protected function configure()
4643 }
4744
4845 /**
49- * Execution
46+ * Execution.
47+ *
48+ * @param InputInterface $input Input console
49+ * @param OutputInterface $output Output console
5050 *
51- * @param InputInterface $input Input console
52- * @param OutputInterface $output Output console
53- * @return integer Exit code
51+ * @return int Exit code
5452 */
5553 protected function execute (InputInterface $ input , OutputInterface $ output )
5654 {
@@ -60,7 +58,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
6058 $ style = new SymfonyStyle ($ input , $ output );
6159 $ output ->write (sprintf ("\033\143" ));
6260 $ style ->title ('Running all ' );
63- $ ignore = array ('qa:all ' , 'qa:fixer ' );
61+ $ ignore = array ('qa:all ' , 'qa:fixer ' , ' qa:paratest ' );
6462
6563 foreach ($ commands as $ command ) {
6664 $ name = $ command ->getName ();
0 commit comments