Skip to content

Commit

Permalink
Missing parameter type declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
mambax7 committed Dec 27, 2020
1 parent cc8fbde commit a6845db
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions class/BaseObjectHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ public function updateAll($fieldname, $fieldvalue, $criteria = null, $force = fa
}

/**
* @param $obj
* @param \XoopsObject $obj
*
* @return bool
*/
Expand All @@ -317,7 +317,7 @@ protected function insertQuery($obj)
}

/**
* @param $obj
* @param \XoopsObject $obj
*
* @return bool|string
*/
Expand All @@ -327,7 +327,7 @@ protected function updateQuery($obj)
}

/**
* @param $obj
* @param \XoopsObject $obj
*
* @return bool
*/
Expand Down
2 changes: 1 addition & 1 deletion class/Form/ItemForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public function hasTab($tab)
}

/**
* @param $obj
* @param \XoopsObject $obj
*
* @return $this
*/
Expand Down
6 changes: 3 additions & 3 deletions class/MimetypeHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ private function selectQuery($criteria = null, $join = false)
}

/**
* @param $obj
* @param \XoopsObject $obj
*
* @return bool|string
*/
Expand All @@ -252,7 +252,7 @@ protected function insertQuery($obj)
}

/**
* @param $obj
* @param \XoopsObject $obj
*
* @return bool|string
*/
Expand All @@ -278,7 +278,7 @@ protected function updateQuery($obj)
}

/**
* @param $obj
* @param \XoopsObject $obj
*
* @return bool|string
*/
Expand Down

0 comments on commit a6845db

Please sign in to comment.