Completed
Push — master ( a52629...cbc88e )
by Joao
04:07
created
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.
src/Repository/XmlDataset.php 1 patch
Doc Comments   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -71,9 +71,7 @@
 block discarded – undo
71 71
 
72 72
     /**
73 73
      * @access public
74
-     * @param string $sql
75
-     * @param array $array
76
-     * @return DBIterator
74
+     * @return XmlIterator
77 75
      */
78 76
     public function getIterator()
79 77
     {
Please login to merge, or discard this patch.
src/Repository/XmlIterator.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -32,6 +32,10 @@
 block discarded – undo
32 32
     private $_current = 0;
33 33
     protected $_registerNS;
34 34
 
35
+    /**
36
+     * @param DOMNodeList $nodeList
37
+     * @param string[] $colNodes
38
+     */
35 39
     public function __construct($nodeList, $colNodes, $registerNS)
36 40
     {
37 41
         if (!($nodeList instanceof DOMNodeList)) {
Please login to merge, or discard this patch.
src/Database/DBBaseFunctions.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
 
45 45
     /**
46 46
      * Return if the database provider have a top or similar function
47
-     * @return unknown_type
47
+     * @return boolean
48 48
      */
49 49
     function hasTop()
50 50
     {
Please login to merge, or discard this patch.