Completed
Push — master ( ae0103...9b98c5 )
by Joao
04:23 queued 56s
created
src/Store/MongoDbDriver.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
 
95 95
     /**
96 96
      * @param $idDocument
97
-     * @param null $collection
97
+     * @param string $collection
98 98
      * @return \ByJG\AnyDataset\NoSqlDocument|null
99 99
      */
100 100
     public function getDocumentById($idDocument, $collection = null)
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
 
113 113
     /**
114 114
      * @param \ByJG\AnyDataset\Dataset\IteratorFilter $filter
115
-     * @param null $collection
115
+     * @param null|string $collection
116 116
      * @return \ByJG\AnyDataset\NoSqlDocument[]|null
117 117
      */
118 118
     public function getDocuments(IteratorFilter $filter, $collection = null)
Please login to merge, or discard this patch.
src/Dataset/IteratorFilter.php 1 patch
Indentation   -2 removed lines patch added patch discarded remove patch
@@ -140,7 +140,6 @@  discard block
 block discarded – undo
140 140
 
141 141
     /**
142 142
      * Add a "("
143
-
144 143
      */
145 144
     public function startGroup()
146 145
     {
@@ -149,7 +148,6 @@  discard block
 block discarded – undo
149 148
 
150 149
     /**
151 150
      * Add a ")"
152
-
153 151
      */
154 152
     public function endGroup()
155 153
     {
Please login to merge, or discard this patch.
src/Dataset/AnyDataset.php 1 patch
Indentation   -4 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@  discard block
 block discarded – undo
13 13
  * Anydataset files have extension ".anydata.xml" and have many classes to put and get data into anydataset xml file.
14 14
  * Anydataset class just read and write files. To search elements you need use AnyIterator
15 15
  * and IteratorFilter. Each row have a class Row.
16
-
17 16
  * XML Structure
18 17
  * <code>
19 18
  * <anydataset>
@@ -28,17 +27,14 @@  discard block
 block discarded – undo
28 27
  *    </row>
29 28
  * </anydataset>
30 29
  * </code>
31
-
32 30
  * How to use:
33 31
  * <code>
34 32
  * $any = new AnyDataset();
35 33
  * </code>
36
-
37 34
  *
38 35
 *@see Row
39 36
  * @see AnyIterator
40 37
  * @see IteratorFilter
41
-
42 38
  */
43 39
 class AnyDataset
44 40
 {
Please login to merge, or discard this patch.