Passed
Branch feature/upgrade-code-quality (f2bae8)
by Csaba
01:55
created
src/Database/Clusterpoint/Finder.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -42,6 +42,9 @@  discard block
 block discarded – undo
42 42
         }
43 43
     }
44 44
 
45
+    /**
46
+     * @param \Clusterpoint\Instance\Service $collection
47
+     */
45 48
     protected function configQuery($collection)
46 49
     {
47 50
         $this->setLimit($collection);
@@ -90,6 +93,9 @@  discard block
 block discarded – undo
90 93
         };
91 94
     }
92 95
 
96
+    /**
97
+     * @param string $nextLogical
98
+     */
93 99
     protected function parseWhereGroup($logical, $collection, $condition, $nextLogical)
94 100
     {
95 101
         if ($logical === '||') {
Please login to merge, or discard this patch.
src/Schema/SchemaValidator.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -143,6 +143,10 @@  discard block
 block discarded – undo
143 143
         return $errors;
144 144
     }
145 145
 
146
+    /**
147
+     * @param string $paramKey
148
+     * @param boolean|null $paramValue
149
+     */
146 150
     private function filterFields($resource, $paramKey, $paramValue, $checkParamValue = true)
147 151
     {
148 152
         $fields = [];
@@ -158,6 +162,9 @@  discard block
 block discarded – undo
158 162
         return $fields;
159 163
     }
160 164
 
165
+    /**
166
+     * @param boolean $checkRequired
167
+     */
161 168
     private function isMatchedValue($checkRequired, $value, $valueToMatch)
162 169
     {
163 170
         if (!$checkRequired) {
Please login to merge, or discard this patch.