Completed
Push — master ( 497518...867338 )
by Joao
04:19
created
src/Repository/AnyDataset.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -308,6 +308,10 @@
 block discarded – undo
308 308
         return;
309 309
     }
310 310
 
311
+    /**
312
+     * @param SingleRow[] $seq
313
+     * @param string $field
314
+     */
311 315
     protected function quickSortExec($seq, $field)
312 316
     {
313 317
         if (!count($seq)) return $seq;
Please login to merge, or discard this patch.
src/Repository/DBIterator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     private $_rs;
21 21
 
22 22
     /**
23
-     * @param PDOStatement $recordset
23
+     * @param \PDOStatement $recordset
24 24
      * @return void
25 25
      */
26 26
     public function __construct($recordset)
Please login to merge, or discard this patch.
src/Repository/FixedTextFileDataset.php 1 patch
Doc Comments   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -49,9 +49,7 @@
 block discarded – undo
49 49
 
50 50
     /**
51 51
      * @access public
52
-     * @param string $sql
53
-     * @param array $array
54
-     * @return DBIterator
52
+     * @return FixedTextFileIterator|null
55 53
      */
56 54
     public function getIterator()
57 55
     {
Please login to merge, or discard this patch.
src/Repository/FixedTextFileIterator.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -84,6 +84,10 @@
 block discarded – undo
84 84
         }
85 85
     }
86 86
 
87
+    /**
88
+     * @param string $buffer
89
+     * @param FixedTextDefinition[] $fieldDefinition
90
+     */
87 91
     protected function processBuffer($buffer, $fieldDefinition)
88 92
     {
89 93
         $cntDef = count($fieldDefinition);
Please login to merge, or discard this patch.
src/Repository/IteratorFilter.php 1 patch
Doc Comments   +4 added lines, -5 removed lines patch added patch discarded remove patch
@@ -47,7 +47,6 @@  discard block
 block discarded – undo
47 47
      * @param string $tableName
48 48
      * @param array &$params
49 49
      * @param string $returnFields
50
-     * @param string $paramSubstName If ended with "_" the program subst by argname;
51 50
      * @return string
52 51
      */
53 52
     public function getSql($tableName, &$params, $returnFields = "*")
@@ -72,8 +71,8 @@  discard block
 block discarded – undo
72 71
 
73 72
     /**
74 73
      *
75
-     * @param $array
76
-     * @return unknown_type
74
+     * @param SingleRow[] $array
75
+     * @return \DOMNodeList
77 76
      */
78 77
     public function match($array)
79 78
     {
@@ -93,7 +92,7 @@  discard block
 block discarded – undo
93 92
      *
94 93
      * @param $type use XPATH or SQL
95 94
      * @param $param
96
-     * @return unknown_type
95
+     * @return string
97 96
      */
98 97
     public function getFilter($type, &$param)
99 98
     {
@@ -242,7 +241,7 @@  discard block
 block discarded – undo
242 241
     /**
243 242
      *
244 243
      * @param string[] $array
245
-     * @return string
244
+     * @return boolean
246 245
      */
247 246
     private function evalString($array)
248 247
     {
Please login to merge, or discard this patch.
src/Repository/JsonDataset.php 1 patch
Doc Comments   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -53,9 +53,7 @@
 block discarded – undo
53 53
 
54 54
     /**
55 55
      * @access public
56
-     * @param string $sql
57
-     * @param array $array
58
-     * @return DBIterator
56
+     * @return JsonIterator
59 57
      */
60 58
     public function getIterator($path = "", $throwErr = false)
61 59
     {
Please login to merge, or discard this patch.
src/Repository/SocketDataset.php 1 patch
Doc Comments   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
      * @param type $rowsep
30 30
      * @param type $colsep
31 31
      * @param type $fieldnames
32
-     * @param type $port
32
+     * @param integer $port
33 33
      */
34 34
     public function __construct($server, $path, $rowsep, $colsep, $fieldnames, $port = 80)
35 35
     {
@@ -42,9 +42,7 @@  discard block
 block discarded – undo
42 42
     }
43 43
 
44 44
     /**
45
-     * @param string $sql
46
-     * @param array $array
47
-     * @return DBIterator
45
+     * @return SocketIterator
48 46
      */
49 47
     public function getIterator()
50 48
     {
Please login to merge, or discard this patch.
src/Repository/SparQLDataset.php 1 patch
Doc Comments   +1 added lines, -4 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@  discard block
 block discarded – undo
14 14
 
15 15
     /**
16 16
      *
17
-     * @param string $json
18 17
      */
19 18
     public function __construct($url, $namespaces = null)
20 19
     {
@@ -46,9 +45,7 @@  discard block
 block discarded – undo
46 45
     }
47 46
 
48 47
     /**
49
-     * @param string $sql
50
-     * @param array $array
51
-     * @return DBIterator
48
+     * @return SparQLIterator
52 49
      */
53 50
     public function getIterator($sparql)
54 51
     {
Please login to merge, or discard this patch.
src/Repository/TextFileDataset.php 1 patch
Doc Comments   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -61,9 +61,7 @@
 block discarded – undo
61 61
 
62 62
     /**
63 63
      * @access public
64
-     * @param string $sql
65
-     * @param array $array
66
-     * @return DBIterator
64
+     * @return TextFileIterator|null
67 65
      */
68 66
     public function getIterator()
69 67
     {
Please login to merge, or discard this patch.