Completed
Push — 6.0-dev ( 0f4b9a...3e656b )
by Simonas
03:13 queued 01:32
created
Command/DocumentGenerateCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -262,7 +262,7 @@
 block discarded – undo
262 262
      * @param array  $properties
263 263
      * @param string $annotation
264 264
      *
265
-     * @return string
265
+     * @return boolean
266 266
      */
267 267
     private function isUniqueAnnotation($properties, $annotation)
268 268
     {
Please login to merge, or discard this patch.
Service/IndexService.php 1 patch
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -217,8 +217,8 @@  discard block
 block discarded – undo
217 217
      *
218 218
      * @param array      $criteria   Example: ['group' => ['best', 'worst'], 'job' => 'medic'].
219 219
      * @param array|null $orderBy    Example: ['name' => 'ASC', 'surname' => 'DESC'].
220
-     * @param int|null   $limit      Default is 10.
221
-     * @param int|null   $offset     Default is 0.
220
+     * @param integer   $limit      Default is 10.
221
+     * @param integer   $offset     Default is 0.
222 222
      *
223 223
      * @return array|DocumentIterator The objects.
224 224
      */
@@ -261,6 +261,9 @@  discard block
 block discarded – undo
261 261
         return new Search();
262 262
     }
263 263
 
264
+    /**
265
+     * @param string $scrollDuration
266
+     */
264 267
     public function getScrollConfiguration($raw, $scrollDuration): array
265 268
     {
266 269
         $scrollConfig = [];
Please login to merge, or discard this patch.
Service/Json/JsonReader.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -59,6 +59,9 @@
 block discarded – undo
59 59
         return $this->index;
60 60
     }
61 61
 
62
+    /**
63
+     * @return resource
64
+     */
62 65
     protected function getFileHandler()
63 66
     {
64 67
         //Make sure the gzip option is resolved from a filename.
Please login to merge, or discard this patch.
DependencyInjection/Compiler/MappingPass.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -122,6 +122,9 @@
 block discarded – undo
122 122
         }
123 123
     }
124 124
 
125
+    /**
126
+     * @param string $directory
127
+     */
125 128
     private function getNamespaces($directory): array
126 129
     {
127 130
         if (!is_dir($directory)) {
Please login to merge, or discard this patch.