Completed
Push — master ( 3ed1ba...90dd46 )
by Lars
07:46
created
src/voku/db/ActiveRecord.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -659,7 +659,7 @@
 block discarded – undo
659 659
    * @param array     $param          <p>
660 660
    *                                  The param will be bind to the $sql query.
661 661
    *                                  </p>
662
-   * @param null|self $obj            <p>
662
+   * @param null|\self $obj            <p>
663 663
    *                                  The object, if find record in database, we will assign the attributes into
664 664
    *                                  this object.
665 665
    *                                  </p>
Please login to merge, or discard this patch.
src/voku/db/DB.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -995,7 +995,7 @@  discard block
 block discarded – undo
995 995
    * @param string    $query    <p>sql-query</p>
996 996
    * @param bool      $useCache <p>use cache?</p>
997 997
    * @param int       $cacheTTL <p>cache-ttl in seconds</p>
998
-   * @param self|null $db       optional <p>the database connection</p>
998
+   * @param null|\self $db       optional <p>the database connection</p>
999 999
    *
1000 1000
    * @return mixed "array" by "<b>SELECT</b>"-queries<br />
1001 1001
    *               "int" (insert_id) by "<b>INSERT</b>"-queries<br />
@@ -1741,7 +1741,7 @@  discard block
 block discarded – undo
1741 1741
    *
1742 1742
    * @param mixed $var
1743 1743
    *
1744
-   * @return mixed
1744
+   * @return string
1745 1745
    */
1746 1746
   public function secure($var)
1747 1747
   {
Please login to merge, or discard this patch.