diff --git a/ide/stubs/Phalcon/db/AdapterInterface.php b/ide/stubs/Phalcon/db/AdapterInterface.php index 30181dcbd..f3594ffb9 100644 --- a/ide/stubs/Phalcon/db/AdapterInterface.php +++ b/ide/stubs/Phalcon/db/AdapterInterface.php @@ -350,7 +350,6 @@ public function getDialect(); * Call it when you need to restore a database connection * * @param mixed $descriptor - * @param $array descriptor * @return */ public function connect($descriptor = null); diff --git a/ide/stubs/Phalcon/db/ResultInterface.php b/ide/stubs/Phalcon/db/ResultInterface.php index 47fbd316e..1c2e60d0f 100644 --- a/ide/stubs/Phalcon/db/ResultInterface.php +++ b/ide/stubs/Phalcon/db/ResultInterface.php @@ -24,7 +24,7 @@ public function __construct(\Phalcon\Db\AdapterInterface $connection, \PDOStatem * Allows to executes the statement again. Some database systems don't support scrollable cursors, * So, as cursors are forward only, we need to execute the cursor again to fetch rows from the begining * - * @return boolean + * @return boolean */ public function execute(); @@ -32,7 +32,7 @@ public function execute(); * Fetches an array/object of strings that corresponds to the fetched row, or FALSE if there are no more rows. * This method is affected by the active fetch flag set using Phalcon\Db\Result\Pdo::setFetchMode * - * @return mixed + * @return mixed */ public function fetch(); @@ -40,7 +40,7 @@ public function fetch(); * Returns an array of strings that corresponds to the fetched row, or FALSE if there are no more rows. * This method is affected by the active fetch flag set using Phalcon\Db\Result\Pdo::setFetchMode * - * @return mixed + * @return mixed */ public function fetchArray(); @@ -48,21 +48,21 @@ public function fetchArray(); * Returns an array of arrays containing all the records in the result * This method is affected by the active fetch flag set using Phalcon\Db\Result\Pdo::setFetchMode * - * @return array + * @return array */ public function fetchAll(); /** * Gets number of rows returned by a resultset * - * @return int + * @return int */ public function numRows(); /** * Moves internal resultset cursor to another position letting us to fetch a certain row * - * @param int $number + * @param int $number */ public function dataSeek($number); @@ -77,8 +77,7 @@ public function setFetchMode($fetchMode); /** * Gets the internal PDO result object * - * @return \PDOStatement + * @return \PDOStatement */ public function getInternalResult(); - } diff --git a/ide/stubs/Phalcon/mvc/Model.php b/ide/stubs/Phalcon/mvc/Model.php index d035ec88a..f163e156f 100644 --- a/ide/stubs/Phalcon/mvc/Model.php +++ b/ide/stubs/Phalcon/mvc/Model.php @@ -605,7 +605,7 @@ public function validationHasFailed() {} * * * @param mixed $filter - * @return \Phalcon\Mvc\Model\Message\MessageInterface[] + * @return \Phalcon\Mvc\Model\Message\MessageInterface[] */ public function getMessages($filter = null) {}