浏览代码

Revert integer check.

Maksim Grib 10 年之前
父节点
当前提交
f6996cbd36
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      Service/GearmanExecute.php

+ 3 - 3
Service/GearmanExecute.php

@@ -78,9 +78,9 @@ class GearmanExecute extends AbstractGearmanService
                 'timeout'                => null,
             ))
             ->setAllowedTypes(array(
-                'iterations'             => array('null', 'integer'),
-                'minimum_execution_time' => array('null', 'integer'),
-                'timeout'                => array('null', 'integer'),
+                'iterations'             => array('null', 'scalar'),
+                'minimum_execution_time' => array('null', 'scalar'),
+                'timeout'                => array('null', 'scalar'),
             ))
         ;
     }