Completed
Pull Request — master (#14)
by Pavel
28:57
created
Cache/KeyStrategyInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,5 +24,5 @@
 block discarded – undo
24 24
      *
25 25
      * @return string
26 26
      */
27
-    public function getEntityKey(ApiMetadata $metadata,array $identifier);
27
+    public function getEntityKey(ApiMetadata $metadata, array $identifier);
28 28
 }
Please login to merge, or discard this patch.
Mapping/EntityMetadata.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -491,7 +491,7 @@
 block discarded – undo
491 491
         }
492 492
 
493 493
         // Fetch mode. Default fetch mode to LAZY, if not set.
494
-        if ( ! isset($mapping['fetch'])) {
494
+        if (!isset($mapping['fetch'])) {
495 495
             $mapping['fetch'] = self::FETCH_LAZY;
496 496
         }
497 497
 
Please login to merge, or discard this patch.
Proxy/ApiCollection.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
         return array_udiff_assoc(
205 205
             $this->snapshot,
206 206
             $this->collection->toArray(),
207
-            function ($a, $b) {
207
+            function($a, $b) {
208 208
                 return $a === $b ? 0 : 1;
209 209
             }
210 210
         );
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
         return array_udiff_assoc(
222 222
             $this->collection->toArray(),
223 223
             $this->snapshot,
224
-            function ($a, $b) {
224
+            function($a, $b) {
225 225
                 return $a === $b ? 0 : 1;
226 226
             }
227 227
         );
Please login to merge, or discard this patch.
Rpc/SearchArgumentsTransformer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
                 /** @var EntityMetadata $target */
45 45
                 $target = $this->manager->getClassMetadata($mapping['target']);
46 46
 
47
-                $converter = function ($value) use ($target) {
47
+                $converter = function($value) use ($target) {
48 48
                     if (!is_object($value)) {
49 49
                         return $value;
50 50
                     }
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
                     $values = $converter($values);
71 71
                 }
72 72
             } else {
73
-                $caster = function ($value) use ($field) {
73
+                $caster = function($value) use ($field) {
74 74
                     $type = $this->manager
75 75
                         ->getConfiguration()
76 76
                         ->getTypeRegistry()->get($this->metadata->getTypeOfField($field));
Please login to merge, or discard this patch.
UnitOfWork.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1683,7 +1683,7 @@  discard block
 block discarded – undo
1683 1683
         $class               = $this->em->getClassMetadata(get_class($entity));
1684 1684
         $associationMappings = array_filter(
1685 1685
             $class->associationMappings,
1686
-            function ($assoc) {
1686
+            function($assoc) {
1687 1687
                 return $assoc['isCascadeRefresh'];
1688 1688
             }
1689 1689
         );
@@ -1722,7 +1722,7 @@  discard block
 block discarded – undo
1722 1722
         $class               = $this->em->getClassMetadata(get_class($entity));
1723 1723
         $associationMappings = array_filter(
1724 1724
             $class->associationMappings,
1725
-            function ($assoc) {
1725
+            function($assoc) {
1726 1726
                 return $assoc['isCascadeDetach'];
1727 1727
             }
1728 1728
         );
@@ -1762,7 +1762,7 @@  discard block
 block discarded – undo
1762 1762
         $class               = $this->manager->getClassMetadata(get_class($entity));
1763 1763
         $associationMappings = array_filter(
1764 1764
             $class->getAssociationMappings(),
1765
-            function ($assoc) {
1765
+            function($assoc) {
1766 1766
                 return $assoc['isCascadeMerge'];
1767 1767
             }
1768 1768
         );
@@ -1800,11 +1800,11 @@  discard block
 block discarded – undo
1800 1800
         $class               = $this->em->getClassMetadata(get_class($entity));
1801 1801
         $associationMappings = array_filter(
1802 1802
             $class->associationMappings,
1803
-            function ($assoc) {
1803
+            function($assoc) {
1804 1804
                 return $assoc['isCascadeRemove'];
1805 1805
             }
1806 1806
         );
1807
-        $entitiesToCascade   = [];
1807
+        $entitiesToCascade = [];
1808 1808
         foreach ($associationMappings as $assoc) {
1809 1809
             if ($entity instanceof Proxy && !$entity->__isInitialized__) {
1810 1810
                 $entity->__load();
Please login to merge, or discard this patch.
Tests/AbstractEntityManagerTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -101,14 +101,14 @@
 block discarded – undo
101 101
         $configuration->setRegistry($this->registry);
102 102
         $configuration->setTypeRegistry(new BaseTypeRegistry(new TypeRegistry()));
103 103
         $configuration->setResolver(new ConstructorFactoryResolver());
104
-        $configuration->setProxyDir(CACHE_DIR.'/doctrine/proxy/');
104
+        $configuration->setProxyDir(CACHE_DIR . '/doctrine/proxy/');
105 105
         $configuration->setProxyNamespace('Bankiru\Api\Doctrine\Test\Proxy');
106 106
         $driver = new MappingDriverChain();
107 107
         $driver->addDriver(
108 108
             new YmlMetadataDriver(
109 109
                 new SymfonyFileLocator(
110 110
                     [
111
-                        __DIR__.'/../Test/Resources/config/api/' => 'Bankiru\Api\Doctrine\Test\Entity',
111
+                        __DIR__ . '/../Test/Resources/config/api/' => 'Bankiru\Api\Doctrine\Test\Entity',
112 112
                     ],
113 113
                     '.api.yml',
114 114
                     DIRECTORY_SEPARATOR
Please login to merge, or discard this patch.
Tests/CustomRepositoryTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
         $repository = $this->getManager()->getRepository(CustomEntity::class);
15 15
         $this->getClient()->push(
16 16
             $this->getResponseMock(true, (object)['customField' => 'custom-response']),
17
-            function (RpcRequestInterface $request) {
17
+            function(RpcRequestInterface $request) {
18 18
                 self::assertEquals('custom-entity/custom', $request->getMethod());
19 19
                 self::assertEquals(
20 20
                     ['param1' => 'value1'],
Please login to merge, or discard this patch.
Tests/IndirectFieldsTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
                     'payload'                  => 'test',
19 19
                 ]
20 20
             ),
21
-            function (RpcRequestInterface $request) {
21
+            function(RpcRequestInterface $request) {
22 22
                 self::assertEquals('indirect-entity/find', $request->getMethod());
23 23
                 self::assertEquals(['some-long-api-field-name' => 241], $request->getParameters());
24 24
 
Please login to merge, or discard this patch.
Tests/ProxyTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
                     'sub-payload' => 'sub-payload',
22 22
                 ]
23 23
             ),
24
-            function (RpcRequestInterface $request) {
24
+            function(RpcRequestInterface $request) {
25 25
                 self::assertEquals('test-entity/find', $request->getMethod());
26 26
                 self::assertEquals(['id' => 2], $request->getParameters());
27 27
 
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
                     'sub-payload' => 'sub-payload',
68 68
                 ]
69 69
             ),
70
-            function (RpcRequestInterface $request) {
70
+            function(RpcRequestInterface $request) {
71 71
                 self::assertEquals('test-entity/find', $request->getMethod());
72 72
                 self::assertEquals(['id' => 2], $request->getParameters());
73 73
 
Please login to merge, or discard this patch.