@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Psi\Bridge\ObjectAgent\Doctrine\PhpcrOdm; |
| 6 | 6 | |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Psi\Bridge\ObjectAgent\Doctrine\Collections; |
| 6 | 6 | |
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | return $this->walkComposite($expr); |
| 46 | 46 | } |
| 47 | 47 | |
| 48 | - throw new \RuntimeException('Unknown Expression: ' . get_class($expr)); |
|
| 48 | + throw new \RuntimeException('Unknown Expression: '.get_class($expr)); |
|
| 49 | 49 | } |
| 50 | 50 | |
| 51 | 51 | /** |
@@ -95,7 +95,7 @@ discard block |
||
| 95 | 95 | |
| 96 | 96 | } |
| 97 | 97 | |
| 98 | - throw new \RuntimeException('Unknown comparator: ' . $comparison->getComparator()); |
|
| 98 | + throw new \RuntimeException('Unknown comparator: '.$comparison->getComparator()); |
|
| 99 | 99 | } |
| 100 | 100 | |
| 101 | 101 | /** |
@@ -110,7 +110,7 @@ discard block |
||
| 110 | 110 | $ormExpressions[] = $this->dispatch($childExpression); |
| 111 | 111 | } |
| 112 | 112 | |
| 113 | - $method = $expression->getType() == Composite::AND ? 'andX' : 'orX'; |
|
| 113 | + $method = $expression->getType() == Composite::AND? 'andX' : 'orX'; |
|
| 114 | 114 | |
| 115 | 115 | return call_user_func_array([$this->expressionBuilder, $method], $ormExpressions); |
| 116 | 116 | } |
@@ -106,7 +106,7 @@ discard block |
||
| 106 | 106 | [ |
| 107 | 107 | 'null', |
| 108 | 108 | null, |
| 109 | - function ($expr) { |
|
| 109 | + function($expr) { |
|
| 110 | 110 | $this->assertEquals('=', $expr->getOperator()); |
| 111 | 111 | $this->assertNull($expr->getValue()->getValue()); |
| 112 | 112 | }, |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | [ |
| 115 | 115 | 'in', |
| 116 | 116 | [1, 2, 3], |
| 117 | - function ($expr) { |
|
| 117 | + function($expr) { |
|
| 118 | 118 | $this->assertEquals('IN', $expr->getOperator()); |
| 119 | 119 | $this->assertEquals([1, 2, 3], $expr->getValue()->getValue()); |
| 120 | 120 | }, |
@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | [ |
| 123 | 123 | 'nin', |
| 124 | 124 | [1, 2, 3], |
| 125 | - function ($expr) { |
|
| 125 | + function($expr) { |
|
| 126 | 126 | $this->assertEquals('NIN', $expr->getOperator()); |
| 127 | 127 | $this->assertEquals([1, 2, 3], $expr->getValue()->getValue()); |
| 128 | 128 | }, |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Psi\Bridge\ObjectAgent\Doctrine\Collections; |
| 6 | 6 | |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | |
| 20 | 20 | public function addCollection($classFqn, array $collection) |
| 21 | 21 | { |
| 22 | - array_map(function ($object) use ($classFqn) { |
|
| 22 | + array_map(function($object) use ($classFqn) { |
|
| 23 | 23 | if (get_class($object) !== $classFqn) { |
| 24 | 24 | throw new \InvalidArgumentException(sprintf( |
| 25 | 25 | 'All objects in collection must be of class "%s", got "%s"', |
@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Psi\Bridge\ObjectAgent\Doctrine\PhpcrOdm; |
| 6 | 6 | |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Psi\Bridge\ObjectAgent\Doctrine\PhpcrOdm; |
| 6 | 6 | |
@@ -133,7 +133,7 @@ discard block |
||
| 133 | 133 | $orderBy = $queryBuilder->orderBy(); |
| 134 | 134 | foreach ($query->getOrderings() as $field => $order) { |
| 135 | 135 | $order = strtolower($order); |
| 136 | - $orderBy->{$order}()->field($sourceAlias . '.' . $field); |
|
| 136 | + $orderBy->{$order}()->field($sourceAlias.'.'.$field); |
|
| 137 | 137 | } |
| 138 | 138 | |
| 139 | 139 | if (null !== $query->getFirstResult()) { |
@@ -59,7 +59,7 @@ |
||
| 59 | 59 | |
| 60 | 60 | $page = new Page(); |
| 61 | 61 | $page->title = $title; |
| 62 | - $page->path = '/test/page-' . $id++; |
|
| 62 | + $page->path = '/test/page-'.$id++; |
|
| 63 | 63 | $this->documentManager->persist($page); |
| 64 | 64 | $this->documentManager->flush(); |
| 65 | 65 | |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Psi\Bridge\ObjectAgent\Doctrine\Orm; |
| 6 | 6 | |
@@ -127,7 +127,7 @@ discard block |
||
| 127 | 127 | } |
| 128 | 128 | |
| 129 | 129 | foreach ($query->getOrderings() as $field => $order) { |
| 130 | - $queryBuilder->addOrderBy($sourceAlias . '.' . $field, $order); |
|
| 130 | + $queryBuilder->addOrderBy($sourceAlias.'.'.$field, $order); |
|
| 131 | 131 | } |
| 132 | 132 | |
| 133 | 133 | if (null !== $query->getFirstResult()) { |