Passed
Pull Request — master (#5)
by Alex
01:55
created
src/Filter/IsNull.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,6 +22,6 @@
 block discarded – undo
22 22
      */
23 23
     protected function createExpression(Expr $expr, string $fieldName, string $parameterName, string $alias): string
24 24
     {
25
-        return (string)$expr->isNull($alias . '.' . $fieldName);
25
+        return (string) $expr->isNull($alias.'.'.$fieldName);
26 26
     }
27 27
 }
Please login to merge, or discard this patch.
src/Filter/IsEqual.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,6 +22,6 @@
 block discarded – undo
22 22
      */
23 23
     protected function createExpression(Expr $expr, string $fieldName, string $parameterName, string $alias): string
24 24
     {
25
-        return (string)$expr->eq($alias . '.' . $fieldName, ':' . $parameterName);
25
+        return (string) $expr->eq($alias.'.'.$fieldName, ':'.$parameterName);
26 26
     }
27 27
 }
Please login to merge, or discard this patch.
src/Filter/IsLessThan.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,6 +22,6 @@
 block discarded – undo
22 22
      */
23 23
     protected function createExpression(Expr $expr, string $fieldName, string $parameterName, string $alias): string
24 24
     {
25
-        return (string)$expr->lt($alias . '.' . $fieldName, ':' . $parameterName);
25
+        return (string) $expr->lt($alias.'.'.$fieldName, ':'.$parameterName);
26 26
     }
27 27
 }
Please login to merge, or discard this patch.
src/Filter/IsGreaterThanOrEqual.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,6 +22,6 @@
 block discarded – undo
22 22
      */
23 23
     protected function createExpression(Expr $expr, string $fieldName, string $parameterName, string $alias): string
24 24
     {
25
-        return (string)$expr->gte($alias . '.' . $fieldName, ':' . $parameterName);
25
+        return (string) $expr->gte($alias.'.'.$fieldName, ':'.$parameterName);
26 26
     }
27 27
 }
Please login to merge, or discard this patch.
src/Filter/IsMemberOf.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,6 +22,6 @@
 block discarded – undo
22 22
      */
23 23
     protected function createExpression(Expr $expr, string $fieldName, string $parameterName, string $alias): string
24 24
     {
25
-        return (string)$expr->isMemberOf($alias . '.' . $fieldName, ':' . $parameterName);
25
+        return (string) $expr->isMemberOf($alias.'.'.$fieldName, ':'.$parameterName);
26 26
     }
27 27
 }
Please login to merge, or discard this patch.
src/Filter/IsLessThanOrEqual.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,6 +22,6 @@
 block discarded – undo
22 22
      */
23 23
     protected function createExpression(Expr $expr, string $fieldName, string $parameterName, string $alias): string
24 24
     {
25
-        return (string)$expr->lte($alias . '.' . $fieldName, ':' . $parameterName);
25
+        return (string) $expr->lte($alias.'.'.$fieldName, ':'.$parameterName);
26 26
     }
27 27
 }
Please login to merge, or discard this patch.
src/Filter/IsGreaterThan.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,6 +22,6 @@
 block discarded – undo
22 22
      */
23 23
     protected function createExpression(Expr $expr, string $fieldName, string $parameterName, string $alias): string
24 24
     {
25
-        return (string)$expr->gt($alias . '.' . $fieldName, ':' . $parameterName);
25
+        return (string) $expr->gt($alias.'.'.$fieldName, ':'.$parameterName);
26 26
     }
27 27
 }
Please login to merge, or discard this patch.
src/Filter/AbstractComposite.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
         $compositeExpr = $this->createComposite($queryBuilder);
66 66
         $compositeExpr->addMultiple($parts['where']->getParts());
67 67
 
68
-        if (!isset($criteria['where']) || WhereType::AND === $criteria['where']) {
68
+        if (!isset($criteria['where']) || WhereType:: AND === $criteria['where']) {
69 69
             $queryBuilder->andWhere($compositeExpr);
70 70
         } else {
71 71
             $queryBuilder->orWhere($compositeExpr);
Please login to merge, or discard this patch.
src/Filter/IsNotEqual.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,6 +22,6 @@
 block discarded – undo
22 22
      */
23 23
     protected function createExpression(Expr $expr, string $fieldName, string $parameterName, string $alias): string
24 24
     {
25
-        return (string)$expr->neq($alias . '.' . $fieldName, ':' . $parameterName);
25
+        return (string) $expr->neq($alias.'.'.$fieldName, ':'.$parameterName);
26 26
     }
27 27
 }
Please login to merge, or discard this patch.