浏览代码

PHPCS fix

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());
         }