@@ -71,9 +71,9 @@ discard block |
||
| 71 | 71 | public function addMappingBundle(string $bundle): self |
| 72 | 72 | { |
| 73 | 73 | $path = $this->kernel->getBundle($bundle)->getPath(); |
| 74 | - $path .= DIRECTORY_SEPARATOR . 'Resources'; |
|
| 75 | - $path .= DIRECTORY_SEPARATOR . 'config'; |
|
| 76 | - $path .= DIRECTORY_SEPARATOR . 'doctrine'; |
|
| 74 | + $path .= DIRECTORY_SEPARATOR.'Resources'; |
|
| 75 | + $path .= DIRECTORY_SEPARATOR.'config'; |
|
| 76 | + $path .= DIRECTORY_SEPARATOR.'doctrine'; |
|
| 77 | 77 | $this->addMappingPath($path); |
| 78 | 78 | |
| 79 | 79 | return $this; |
@@ -97,7 +97,7 @@ discard block |
||
| 97 | 97 | |
| 98 | 98 | protected function getLastMappingValidateFilePath(): string |
| 99 | 99 | { |
| 100 | - return $this->kernel->getCacheDir() . DIRECTORY_SEPARATOR . 'dev_bundle_last_mapping_validate'; |
|
| 100 | + return $this->kernel->getCacheDir().DIRECTORY_SEPARATOR.'dev_bundle_last_mapping_validate'; |
|
| 101 | 101 | } |
| 102 | 102 | |
| 103 | 103 | protected function needValidate(): bool |
@@ -20,7 +20,7 @@ |
||
| 20 | 20 | { |
| 21 | 21 | public function load(array $configs, ContainerBuilder $container): void |
| 22 | 22 | { |
| 23 | - $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
| 23 | + $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
| 24 | 24 | $loader->load('services.yml'); |
| 25 | 25 | |
| 26 | 26 | $configuration = new Configuration(); |
@@ -8,6 +8,6 @@ |
||
| 8 | 8 | { |
| 9 | 9 | public function __construct(string $em, string $error) |
| 10 | 10 | { |
| 11 | - parent::__construct('[EntityManager : ' . $em . '] ' . $error); |
|
| 11 | + parent::__construct('[EntityManager : '.$em.'] '.$error); |
|
| 12 | 12 | } |
| 13 | 13 | } |