Completed
Pull Request — master (#10)
by Mariusz
03:23
created
example.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-require_once __DIR__ . '/vendor/autoload.php';
3
+require_once __DIR__.'/vendor/autoload.php';
4 4
 
5 5
 class Foo
6 6
 {
Please login to merge, or discard this patch.
tests/Functional/DoctrineOrm/Mock/DoctrineOrmHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     protected function setupEntityManager()
21 21
     {
22 22
         $entityPaths = [
23
-            __DIR__ . '/Entity',
23
+            __DIR__.'/Entity',
24 24
         ];
25 25
 
26 26
         $isDevMode = false;
Please login to merge, or discard this patch.
tests/Functional/DoctrineOrm/Mock/DataProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
     public function __construct()
40 40
     {
41 41
         $data = Yaml::parse(
42
-            file_get_contents(__DIR__ . '/data.yml')
42
+            file_get_contents(__DIR__.'/data.yml')
43 43
         );
44 44
 
45 45
         $categoriesMap = [];
Please login to merge, or discard this patch.
Association/Path/Builder/DivergingAssociationPathBuilderTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -194,7 +194,7 @@
 block discarded – undo
194 194
             );
195 195
         }
196 196
         foreach (array_keys($childPaths) as $childPathIndex) {
197
-            $childPaths[$childPathIndex] = $path . $childPaths[$childPathIndex];
197
+            $childPaths[$childPathIndex] = $path.$childPaths[$childPathIndex];
198 198
         }
199 199
 
200 200
         return $childPaths;
Please login to merge, or discard this patch.
legacyTests/Functional/DoctrineOrmHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
     protected function setupEntityManager()
22 22
     {
23 23
         $entityPaths = [
24
-            __DIR__ . '/DoctrineOrm/Mock/Entity',
24
+            __DIR__.'/DoctrineOrm/Mock/Entity',
25 25
         ];
26 26
 
27 27
         $isDevMode = false;
Please login to merge, or discard this patch.
legacyTests/Functional/GenericEntity/Mock/DataProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
     public function __construct()
41 41
     {
42 42
         $data = Yaml::parse(
43
-            file_get_contents(__DIR__ . '/../../data.yml')
43
+            file_get_contents(__DIR__.'/../../data.yml')
44 44
         );
45 45
 
46 46
         $categoriesMap = [];
Please login to merge, or discard this patch.
legacyTests/Functional/DoctrineOrm/Mock/DataProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
     public function __construct()
41 41
     {
42 42
         $data = Yaml::parse(
43
-            file_get_contents(__DIR__ . '/../../data.yml')
43
+            file_get_contents(__DIR__.'/../../data.yml')
44 44
         );
45 45
 
46 46
         $categoriesMap = [];
Please login to merge, or discard this patch.
draft-1.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
     [
56 56
         ['foo', [
57 57
             ['bar'],
58
-            ['baz'  , 'qux'],
58
+            ['baz', 'qux'],
59 59
         ]],
60 60
         ['qux'],
61 61
     ]
Please login to merge, or discard this patch.
sandbox-1.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 
4 4
 use Xsolve\Associate\DoctrineOrm\Association\Path\Builder\DivergingAssociationPathBuilder;
5 5
 
6
-require_once __DIR__ . '/vendor/autoload.php';
6
+require_once __DIR__.'/vendor/autoload.php';
7 7
 
8 8
 $doctrineOrmAssociationPathBuilder = new DivergingAssociationPathBuilder();
9 9
 
Please login to merge, or discard this patch.