Skip to content

Commit

Permalink
Fix PHP doc
Browse files Browse the repository at this point in the history
  • Loading branch information
npeguin committed Feb 22, 2017
1 parent 14426e5 commit 6a587e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Mouf/Database/TDBM/TDBMService.php
Expand Up @@ -611,7 +611,7 @@ private function deleteAllConstraintWithThisObject(TDBMObject $obj) {
* @param integer $from The offset
* @param integer $limit The maximum number of objects returned
* @param string $className Optional: The name of the class to instanciate. This class must extend the TDBMObject class. If none is specified, a TDBMObject instance will be returned.
* @return array|Generator|TDBMObjectArray The result set of the query as a TDBMObjectArray (an array of TDBMObjects with special properties)
* @return array|\Generator|TDBMObjectArray The result set of the query as a TDBMObjectArray (an array of TDBMObjects with special properties)
*/
public function getObjectsFromSQL($table_name, $sql, $from=null, $limit=null, $className=null) {
if ($this->dbConnection == null) {
Expand Down Expand Up @@ -1382,7 +1382,7 @@ public function explainRequestAsHTMLGetObjects($table_name, $filter_bag=null, $o
* @param integer $limit The maximum number of rows returned
* @param string $className Optional: The name of the class to instanciate. This class must extend the TDBMObject class. If none is specified, a TDBMObject instance will be returned.
* @param unknown_type $hint_path Hints to get the path for the query (expert parameter, you should leave it to null).
* @return array|Generator|TDBMObjectArray|int An array or object containing the resulting objects of the query.
* @return array|\Generator|TDBMObjectArray|int An array or object containing the resulting objects of the query.
*/
public function getObjectsByMode($mode, $table_name, $filter_bag=null, $orderby_bag=null, $from=null, $limit=null, $className=null, $hint_path=null) {
$this->completeSave();
Expand Down

0 comments on commit 6a587e6

Please sign in to comment.