@@ -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 = []; |
@@ -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 | { |
@@ -2,7 +2,7 @@ |
||
| 2 | 2 | |
| 3 | 3 | use Xsolve\Associate\DoctrineOrm\Association\Path\Builder\AssociationPathBuilder; |
| 4 | 4 | |
| 5 | -require_once __DIR__ . '/vendor/autoload.php'; |
|
| 5 | +require_once __DIR__.'/vendor/autoload.php'; |
|
| 6 | 6 | |
| 7 | 7 | $doctrineOrmAssociationPathBuilder = new AssociationPathBuilder(); |
| 8 | 8 | |