@@ -32,6 +32,9 @@ |
||
32 | 32 | return $limit; |
33 | 33 | } |
34 | 34 | |
35 | + /** |
|
36 | + * @param integer $newOffset |
|
37 | + */ |
|
35 | 38 | private function formUrl($newOffset) |
36 | 39 | { |
37 | 40 | $gets=array(); |
@@ -9,6 +9,9 @@ |
||
9 | 9 | $this->class_list->dataBind(); |
10 | 10 | } |
11 | 11 | |
12 | + /** |
|
13 | + * @param string $directory |
|
14 | + */ |
|
12 | 15 | protected function getRecordClassList($directory) |
13 | 16 | { |
14 | 17 | $list=array(); |
@@ -93,6 +93,9 @@ |
||
93 | 93 | $param->IsValid = $this->password->Text == 'Prado'; |
94 | 94 | } |
95 | 95 | |
96 | + /** |
|
97 | + * @param CommentRecord $record |
|
98 | + */ |
|
96 | 99 | protected function format_message($record) |
97 | 100 | { |
98 | 101 | $username=htmlspecialchars($record->username); |
@@ -268,7 +268,7 @@ discard block |
||
268 | 268 | * Returns a Zend_Search_Lucene_Document object for the document |
269 | 269 | * number $id in this index. |
270 | 270 | * |
271 | - * @param integer|Zend_Search_Lucene_Search_QueryHit $id |
|
271 | + * @param integer $id |
|
272 | 272 | * @return Zend_Search_Lucene_Document |
273 | 273 | */ |
274 | 274 | public function getDocument($id) |
@@ -553,7 +553,6 @@ discard block |
||
553 | 553 | * or the number of the document to delete. |
554 | 554 | * |
555 | 555 | * @todo Implementation |
556 | - * @param mixed $item_to_del |
|
557 | 556 | */ |
558 | 557 | public function delete($doc) |
559 | 558 | {} |
@@ -68,7 +68,6 @@ |
||
68 | 68 | /** |
69 | 69 | * Set the default Analyzer implementation used by indexing code. |
70 | 70 | * |
71 | - * @param Zend_Search_Lucene_Analysis_Analyzer $similarity |
|
72 | 71 | */ |
73 | 72 | static public function setDefault(Zend_Search_Lucene_Analysis_Analyzer $analyzer) |
74 | 73 | { |
@@ -47,6 +47,9 @@ |
||
47 | 47 | |
48 | 48 | public $boost = 1.0; |
49 | 49 | |
50 | + /** |
|
51 | + * @param boolean $isStored |
|
52 | + */ |
|
50 | 53 | public function __construct($name, $stringValue, $isStored, $isIndexed, $isTokenized, $isBinary = false) |
51 | 54 | { |
52 | 55 | $this->name = $name; |
@@ -32,6 +32,10 @@ |
||
32 | 32 | public $number; |
33 | 33 | public $storeTermVector; |
34 | 34 | |
35 | + /** |
|
36 | + * @param string $name |
|
37 | + * @param integer $number |
|
38 | + */ |
|
35 | 39 | public function __construct( $name, $isIndexed, $number, $storeTermVector ) |
36 | 40 | { |
37 | 41 | $this->name = $name; |
@@ -391,7 +391,7 @@ |
||
391 | 391 | * |
392 | 392 | * @param integer $id |
393 | 393 | * @param string $fieldName |
394 | - * @return string |
|
394 | + * @return null|double |
|
395 | 395 | */ |
396 | 396 | public function norm($id, $fieldName) |
397 | 397 | { |
@@ -65,6 +65,11 @@ |
||
65 | 65 | */ |
66 | 66 | public $indexPointer; |
67 | 67 | |
68 | + /** |
|
69 | + * @param integer $docFreq |
|
70 | + * @param integer $skipOffset |
|
71 | + * @param integer $indexPointer |
|
72 | + */ |
|
68 | 73 | public function __construct($docFreq, $freqPointer, $proxPointer, $skipOffset, $indexPointer = null) |
69 | 74 | { |
70 | 75 | $this->docFreq = $docFreq; |