Pārlūkot izejas kodu

CheckSintaxCommand.php edited online with Bitbucket

Gabriel Gosparo 6 gadi atpakaļ
vecāks
revīzija
77705c62dd
1 mainītis faili ar 2 papildinājumiem un 1 dzēšanām
  1. 2 1
      Command/CheckSintaxCommand.php

+ 2 - 1
Command/CheckSintaxCommand.php

@@ -53,6 +53,7 @@ class CheckSintaxCommand extends ContainerAwareCommand
             $this->returnOK($output);
             return 0;
         } else {
+            $output->writeln("CHECK SINTAX ERROR!!!");
             $output->writeln($error);
         }
         return 1;
@@ -80,7 +81,7 @@ class CheckSintaxCommand extends ContainerAwareCommand
      */
     private function returnOK(OutputInterface $output)
     {
-        $output->writeln("OK!!!");
+        $output->writeln("CHECK SINTAX OK!!!");
     }
 
     /**