@@ -1,6 +1,6 @@ |
||
| 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 | { |
@@ -20,7 +20,7 @@ |
||
| 20 | 20 | protected function setupEntityManager() |
| 21 | 21 | { |
| 22 | 22 | $entityPaths = [ |
| 23 | - __DIR__ . '/Entity', |
|
| 23 | + __DIR__.'/Entity', |
|
| 24 | 24 | ]; |
| 25 | 25 | |
| 26 | 26 | $isDevMode = false; |
@@ -39,7 +39,7 @@ |
||
| 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 = []; |
@@ -194,7 +194,7 @@ |
||
| 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; |
@@ -21,7 +21,7 @@ |
||
| 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; |
@@ -40,7 +40,7 @@ |
||
| 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 = []; |
@@ -40,7 +40,7 @@ |
||
| 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 = []; |
@@ -55,7 +55,7 @@ |
||
| 55 | 55 | [ |
| 56 | 56 | ['foo', [ |
| 57 | 57 | ['bar'], |
| 58 | - ['baz' , 'qux'], |
|
| 58 | + ['baz', 'qux'], |
|
| 59 | 59 | ]], |
| 60 | 60 | ['qux'], |
| 61 | 61 | ] |
@@ -3,7 +3,7 @@ |
||
| 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 | |