Completed
Pull Request — master (#56)
by
unknown
08:18
created
src/Executor/DoctrineDBAL/FilterTrait.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -11,6 +11,7 @@
 block discarded – undo
11 11
 
12 12
     /**
13 13
      * {@inheritDoc}
14
+     * @param \Doctrine\DBAL\Query\QueryBuilder $target
14 15
      */
15 16
     public function applyFilter($target, array $parameters, array $operators, ExecutionContext $context)
16 17
     {
Please login to merge, or discard this patch.
src/Executor/DoctrineORM/FilterTrait.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -7,10 +7,14 @@
 block discarded – undo
7 7
 
8 8
 trait FilterTrait
9 9
 {
10
+    /**
11
+     * @param \Doctrine\ORM\QueryBuilder $target
12
+     */
10 13
     abstract protected function execute($target, array $operators, array $parameters);
11 14
 
12 15
     /**
13 16
      * {@inheritDoc}
17
+     * @param \Doctrine\ORM\QueryBuilder $target
14 18
      */
15 19
     public function applyFilter($target, array $parameters, array $operators, ExecutionContext $context)
16 20
     {
Please login to merge, or discard this patch.
src/RulerZ.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
      * @param Specification $spec             The specification to apply.
95 95
      * @param array         $executionContext The execution context.
96 96
      *
97
-     * @return mixed The filtered target.
97
+     * @return \Traversable The filtered target.
98 98
      *
99 99
      * @throws TargetUnsupportedException
100 100
      */
Please login to merge, or discard this patch.