@@ -17,7 +17,7 @@ |
||
| 17 | 17 | $configuration = new Configuration(); |
| 18 | 18 | $this->processConfiguration($configuration, $configs); |
| 19 | 19 | |
| 20 | - $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
| 20 | + $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
| 21 | 21 | $loader->load('services.yml'); |
| 22 | 22 | } |
| 23 | 23 | } |
@@ -18,7 +18,7 @@ |
||
| 18 | 18 | |
| 19 | 19 | use Doctrine\Common\Annotations\AnnotationRegistry; |
| 20 | 20 | |
| 21 | -call_user_func(function () { |
|
| 21 | +call_user_func(function() { |
|
| 22 | 22 | if (!is_file($autoloadFile = __DIR__ . '/../vendor/autoload.php')) { |
| 23 | 23 | throw new \RuntimeException('Did not find vendor/autoload.php. Did you run "composer install --dev"?'); |
| 24 | 24 | } |
@@ -17,7 +17,7 @@ |
||
| 17 | 17 | public function setUp() |
| 18 | 18 | { |
| 19 | 19 | \Doctrine\Common\Annotations\AnnotationRegistry::registerAutoloadNamespace( |
| 20 | - 'JMS\Serializer\Annotation', __DIR__.'/vendor/jms/serializer/src' |
|
| 20 | + 'JMS\Serializer\Annotation', __DIR__ . '/vendor/jms/serializer/src' |
|
| 21 | 21 | ); |
| 22 | 22 | } |
| 23 | 23 | |