Completed
Pull Request — master (#296)
by
unknown
13:28
created
author.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -62,6 +62,9 @@  discard block
 block discarded – undo
62 62
         return self::getEntryArray (self::SQL_AUTHORS_BY_FIRST_LETTER, array ($letter . "%"));
63 63
     }
64 64
 
65
+    /**
66
+     * @param string $query
67
+     */
65 68
     public static function getAuthorsForSearch($query) {
66 69
         return self::getEntryArray (self::SQL_AUTHORS_FOR_SEARCH, array ($query . "%", $query . "%"));
67 70
     }
@@ -70,6 +73,9 @@  discard block
 block discarded – undo
70 73
         return self::getEntryArray (self::SQL_ALL_AUTHORS, array ());
71 74
     }
72 75
 
76
+    /**
77
+     * @param string $query
78
+     */
73 79
     public static function getEntryArray ($query, $params) {
74 80
         return Base::getEntryArrayWithBookNumber ($query, self::AUTHOR_COLUMNS, $params, "Author");
75 81
     }
Please login to merge, or discard this patch.
data.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -139,6 +139,9 @@  discard block
 block discarded – undo
139 139
         return new Link ($href, $this->getMimeType (), Link::OPDS_ACQUISITION_TYPE, $title);
140 140
     }
141 141
 
142
+    /**
143
+     * @param Book $book
144
+     */
142 145
     public static function getDataByBook ($book) {
143 146
         $out = array ();
144 147
         $result = parent::getDb ()->prepare('select id, format, name
@@ -152,6 +155,9 @@  discard block
 block discarded – undo
152 155
         return $out;
153 156
     }
154 157
 
158
+    /**
159
+     * @param string $urlParam
160
+     */
155 161
     public static function handleThumbnailLink ($urlParam, $height) {
156 162
         global $config;
157 163
 
@@ -171,6 +177,10 @@  discard block
 block discarded – undo
171 177
         return $urlParam;
172 178
     }
173 179
 
180
+    /**
181
+     * @param string $type
182
+     * @param string $filename
183
+     */
174 184
     public static function getLink ($book, $type, $mime, $rel, $filename, $idData, $title = NULL, $height = NULL)
175 185
     {
176 186
         global $config;
Please login to merge, or discard this patch.
rating.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -38,6 +38,9 @@
 block discarded – undo
38 38
         return self::getEntryArray (self::SQL_ALL_RATINGS, array ());
39 39
     }
40 40
 
41
+    /**
42
+     * @param string $query
43
+     */
41 44
     public static function getEntryArray ($query, $params) {
42 45
         list (, $result) = parent::executeQuery ($query, self::RATING_COLUMNS, "", $params, -1);
43 46
         $entryArray = array();
Please login to merge, or discard this patch.
test/OPDSTest.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -26,6 +26,9 @@  discard block
 block discarded – undo
26 26
         unlink (TEST_FEED);
27 27
     }
28 28
 
29
+    /**
30
+     * @param string $relax
31
+     */
29 32
     function jingValidateSchema($feed, $relax = OPDS_RELAX_NG) {
30 33
         $path = "";
31 34
         if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
@@ -57,6 +60,9 @@  discard block
 block discarded – undo
57 60
             return true;
58 61
     }
59 62
 
63
+    /**
64
+     * @param string $feed
65
+     */
60 66
     function opdsCompleteValidation ($feed) {
61 67
         return $this->jingValidateSchema($feed) && $this->opdsValidator($feed);
62 68
     }
Please login to merge, or discard this patch.
test/Sauce.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -189,6 +189,10 @@
 block discarded – undo
189 189
         $this->assertEquals (14, count($filtered));
190 190
     }
191 191
 
192
+    /**
193
+     * @param string $src
194
+     * @param string $out
195
+     */
192 196
     public function normalSearch ($src, $out)
193 197
     {
194 198
         $driver = $this;
Please login to merge, or discard this patch.
transliteration.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -163,7 +163,7 @@
 block discarded – undo
163 163
 /**
164 164
  * Replaces a Unicode character using the transliteration database.
165 165
  *
166
- * @param $ord
166
+ * @param integer $ord
167 167
  *   An ordinal Unicode character code.
168 168
  * @param $unknown
169 169
  *   Replacement string for characters that do not have a suitable ASCII
Please login to merge, or discard this patch.
book.php 1 patch
Doc Comments   +21 added lines, -1 removed lines patch added patch discarded remove patch
@@ -341,6 +341,10 @@  discard block
 block discarded – undo
341 341
         return reset ($reduced);
342 342
     }
343 343
 
344
+    /**
345
+     * @param string $extension
346
+     * @param integer $idData
347
+     */
344 348
     public function getFilePath ($extension, $idData = NULL, $relative = false)
345 349
     {
346 350
         if ($extension == "jpg")
@@ -400,6 +404,9 @@  discard block
 block discarded – undo
400 404
         }
401 405
     }
402 406
 
407
+    /**
408
+     * @param string $outputfile
409
+     */
403 410
     public function getThumbnail ($width, $height, $outputfile = NULL) {
404 411
         if (is_null ($width) && is_null ($height)) {
405 412
             return false;
@@ -474,6 +481,9 @@  discard block
 block discarded – undo
474 481
             $this->getLinkArray (), $this);
475 482
     }
476 483
 
484
+    /**
485
+     * @param integer $database
486
+     */
477 487
     public static function getBookCount($database = NULL) {
478 488
         return parent::executeQuerySingle ('select count(*) from books', $database);
479 489
     }
@@ -522,7 +532,7 @@  discard block
 block discarded – undo
522 532
     }
523 533
 
524 534
     /**
525
-     * @param $customColumn CustomColumn
535
+     * @param CustomColumn $customColumn CustomColumn
526 536
      * @param $id integer
527 537
      * @param $n integer
528 538
      * @return array
@@ -546,6 +556,9 @@  discard block
 block discarded – undo
546 556
         return NULL;
547 557
     }
548 558
 
559
+    /**
560
+     * @param integer $dataId
561
+     */
549 562
     public static function getBookByDataId($dataId) {
550 563
         $result = parent::getDb ()->prepare('select ' . self::BOOK_COLUMNS . ', data.name, data.format
551 564
 from data, books ' . self::SQL_BOOKS_LEFT_JOIN . '
@@ -562,6 +575,10 @@  discard block
 block discarded – undo
562 575
         return NULL;
563 576
     }
564 577
 
578
+    /**
579
+     * @param integer $database
580
+     * @param integer $numberPerPage
581
+     */
565 582
     public static function getBooksByQuery($query, $n, $database = NULL, $numberPerPage = NULL) {
566 583
         $i = 0;
567 584
         $critArray = array ();
@@ -609,6 +626,9 @@  discard block
 block discarded – undo
609 626
         return $entryArray;
610 627
     }
611 628
 
629
+    /**
630
+     * @param integer $numberPerPage
631
+     */
612 632
     public static function getBooksByStartingLetter($letter, $n, $database = NULL, $numberPerPage = NULL) {
613 633
         return self::getEntryArray (self::SQL_BOOKS_BY_FIRST_LETTER, array ($letter . "%"), $n, $database, $numberPerPage);
614 634
     }
Please login to merge, or discard this patch.
publisher.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -38,6 +38,9 @@
 block discarded – undo
38 38
         return self::getEntryArray (self::SQL_ALL_RATINGS, array ());
39 39
     }
40 40
 
41
+    /**
42
+     * @param string $query
43
+     */
41 44
     public static function getEntryArray ($query, $params) {
42 45
         list (, $result) = parent::executeQuery ($query, self::RATING_COLUMNS, "", $params, -1);
43 46
         $entryArray = array();
Please login to merge, or discard this patch.
serie.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -38,6 +38,9 @@
 block discarded – undo
38 38
         return self::getEntryArray (self::SQL_ALL_RATINGS, array ());
39 39
     }
40 40
 
41
+    /**
42
+     * @param string $query
43
+     */
41 44
     public static function getEntryArray ($query, $params) {
42 45
         list (, $result) = parent::executeQuery ($query, self::RATING_COLUMNS, "", $params, -1);
43 46
         $entryArray = array();
Please login to merge, or discard this patch.