Completed
Push — master ( 8e9858...ee369b )
by Kirill
02:43
created
src/Processor/DatabaseProcessor/WhereBuilder.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      *
25 25
      * @param QueryBuilder $builder
26 26
      * @param CriterionInterface|Where $where
27
-     * @return iterable|null
27
+     * @return \Generator
28 28
      */
29 29
     public function apply($builder, CriterionInterface $where): ?iterable
30 30
     {
Please login to merge, or discard this patch.
src/Processor/Processor.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
     }
81 81
 
82 82
     /**
83
-     * @param mixed $context
83
+     * @param \Doctrine\ORM\QueryBuilder $context
84 84
      * @param Query $query
85 85
      * @return \Generator
86 86
      */
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
 
119 119
     /**
120 120
      * @param Query $query
121
-     * @return \Generator|BuilderInterface[]
121
+     * @return \Generator
122 122
      */
123 123
     private function builders(Query $query): \Generator
124 124
     {
Please login to merge, or discard this patch.
src/Query/AliasProvider.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -44,6 +44,7 @@
 block discarded – undo
44 44
 
45 45
     /**
46 46
      * @param string ...$patterns
47
+     * @param string[] $patterns
47 48
      * @return string
48 49
      */
49 50
     public function createAlias(string ...$patterns): string
Please login to merge, or discard this patch.
src/Query/RepositoryProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
     protected $repository;
26 26
 
27 27
     /**
28
-     * @param ObjectRepository|Hydrogen $repository
28
+     * @param ObjectRepository $repository
29 29
      * @return Query|$this
30 30
      */
31 31
     public function from(ObjectRepository $repository): self
Please login to merge, or discard this patch.
src/Query.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
     /**
182 182
      * Returns a list of selection criteria.
183 183
      *
184
-     * @return \Generator|CriterionInterface[]
184
+     * @return \Generator
185 185
      */
186 186
     public function getCriteria(): \Generator
187 187
     {
@@ -295,7 +295,7 @@  discard block
 block discarded – undo
295 295
     }
296 296
 
297 297
     /**
298
-     * @param string|\Closure $filter
298
+     * @param \Closure $filter
299 299
      * @return Query
300 300
      */
301 301
     public function only($filter): Query
Please login to merge, or discard this patch.