Completed
Push — scrutinizer ( c2ef4a )
by Fabio
21:50
created
demos/blog/protected/Pages/SearchPost.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -32,6 +32,9 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.
demos/northwind-db/protected/pages/NorthwindCrud.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -9,6 +9,9 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.
demos/quickstart/protected/controls/Comments/CommentBlock.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -93,6 +93,9 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
demos/quickstart/protected/index/Zend/Search/Lucene.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -268,7 +268,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     {}
Please login to merge, or discard this patch.
demos/quickstart/protected/index/Zend/Search/Lucene/Analysis/Analyzer.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,6 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
demos/quickstart/protected/index/Zend/Search/Lucene/Field.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -47,6 +47,9 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
demos/quickstart/protected/index/Zend/Search/Lucene/Index/FieldInfo.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -32,6 +32,10 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
demos/quickstart/protected/index/Zend/Search/Lucene/Index/SegmentInfo.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -391,7 +391,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
demos/quickstart/protected/index/Zend/Search/Lucene/Index/TermInfo.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -65,6 +65,11 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.