diff --git a/lib/base/mao/mao.class.php b/lib/base/mao/mao.class.php index dbfc66aa01..4e26daf7ec 100644 --- a/lib/base/mao/mao.class.php +++ b/lib/base/mao/mao.class.php @@ -352,7 +352,7 @@ class baseMao * @access public * @return static the dao object. */ - public function eq(string $value) + public function eq($value) { $this->condition['operator'] = 'eq'; $this->condition['value'] = $value; @@ -374,7 +374,7 @@ class baseMao * @access public * @return static the dao object. */ - public function ne(string $value) + public function ne($value) { $this->condition['operator'] = 'ne'; $this->condition['value'] = $value;