Completed
Push — _tmp_54ad349fb0909316ca2865d89... ( 54ad34 )
by Kamil
406:50 queued 392:59
created
Doctrine/ORM/ExpressionBuilder.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@
 block discarded – undo
13 13
 
14 14
 namespace Sylius\Bundle\GridBundle\Doctrine\ORM;
15 15
 
16
-use Doctrine\ORM\Query\Expr\Comparison;
17 16
 use Doctrine\ORM\QueryBuilder;
17
+use Doctrine\ORM\Query\Expr\Comparison;
18 18
 use Sylius\Component\Grid\Data\ExpressionBuilderInterface;
19 19
 
20 20
 final class ExpressionBuilder implements ExpressionBuilderInterface
Please login to merge, or discard this patch.
Form/Registry/FormTypeRegistryInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -15,8 +15,14 @@
 block discarded – undo
15 15
 
16 16
 interface FormTypeRegistryInterface
17 17
 {
18
+    /**
19
+     * @return void
20
+     */
18 21
     public function add(string $identifier, string $typeIdentifier, string $formType): void;
19 22
 
23
+    /**
24
+     * @return string|null
25
+     */
20 26
     public function get(string $identifier, string $typeIdentifier): ?string;
21 27
 
22 28
     public function has(string $identifier, string $typeIdentifier): bool;
Please login to merge, or discard this patch.