Marc преди 11 години
родител
ревизия
a6b759f560
променени са 2 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 1 1
      Command/Util/GearmanOutputAwareInterface.php
  2. 1 1
      Service/GearmanExecute.php

+ 1 - 1
Command/Util/GearmanOutputAwareInterface.php

@@ -29,4 +29,4 @@ interface GearmanOutputAwareInterface
      * @param OutputInterface $output
      */
     public function setOutput(OutputInterface $output);
-}
+}

+ 1 - 1
Service/GearmanExecute.php

@@ -193,7 +193,7 @@ class GearmanExecute extends AbstractGearmanService
         /**
          * Set the output of this instance, this should allow workers to use the console output.
          */
-        if($objInstance instanceof GearmanOutputAwareInterface) {
+        if ($objInstance instanceof GearmanOutputAwareInterface) {
             $objInstance->setOutput($this->output ? : new NullOutput());
         }