@@ -27,7 +27,7 @@ |
||
| 27 | 27 | public function load(array $config, ContainerBuilder $container) |
| 28 | 28 | { |
| 29 | 29 | $config = $this->processConfiguration($this->getConfiguration([], $container), $config); |
| 30 | - $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
| 30 | + $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
| 31 | 31 | |
| 32 | 32 | $loader->load(sprintf('services/integrations/%s.xml', $config['driver'])); |
| 33 | 33 | |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | public function load(array $config, ContainerBuilder $container) |
| 42 | 42 | { |
| 43 | 43 | $config = $this->processConfiguration($this->getConfiguration([], $container), $config); |
| 44 | - $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
| 44 | + $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
| 45 | 45 | |
| 46 | 46 | $loader->load(sprintf('services/integrations/%s.xml', $config['driver'])); |
| 47 | 47 | |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | foreach ($resources as $variableName => $variableConfig) { |
| 67 | 67 | foreach ($variableConfig as $resourceName => $resourceConfig) { |
| 68 | 68 | if (is_array($resourceConfig)) { |
| 69 | - $resolvedResources[$variableName.'_'.$resourceName] = $resourceConfig; |
|
| 69 | + $resolvedResources[$variableName . '_' . $resourceName] = $resourceConfig; |
|
| 70 | 70 | } |
| 71 | 71 | } |
| 72 | 72 | } |
@@ -28,7 +28,7 @@ |
||
| 28 | 28 | public function load(array $config, ContainerBuilder $container) |
| 29 | 29 | { |
| 30 | 30 | $config = $this->processConfiguration($this->getConfiguration([], $container), $config); |
| 31 | - $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
| 31 | + $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
| 32 | 32 | |
| 33 | 33 | $configFiles = [ |
| 34 | 34 | 'services.xml', |
@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | public function load(array $config, ContainerBuilder $container) |
| 29 | 29 | { |
| 30 | 30 | $config = $this->processConfiguration($this->getConfiguration([], $container), $config); |
| 31 | - $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
| 31 | + $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
| 32 | 32 | |
| 33 | 33 | $loader->load('services.xml'); |
| 34 | 34 | |
@@ -40,7 +40,7 @@ discard block |
||
| 40 | 40 | */ |
| 41 | 41 | public function prepend(ContainerBuilder $container) |
| 42 | 42 | { |
| 43 | - $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
| 43 | + $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
| 44 | 44 | |
| 45 | 45 | $extensionsNamesToConfigurationFiles = [ |
| 46 | 46 | 'doctrine' => 'doctrine/orm.xml', |
@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | public function load(array $config, ContainerBuilder $container) |
| 28 | 28 | { |
| 29 | 29 | $config = $this->processConfiguration($this->getConfiguration([], $container), $config); |
| 30 | - $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
| 30 | + $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
| 31 | 31 | |
| 32 | 32 | $loader->load('services.xml'); |
| 33 | 33 | |
@@ -48,7 +48,7 @@ discard block |
||
| 48 | 48 | foreach ($resources as $subjectName => $subjectConfig) { |
| 49 | 49 | foreach ($subjectConfig as $resourceName => $resourceConfig) { |
| 50 | 50 | if (is_array($resourceConfig)) { |
| 51 | - $resolvedResources[$subjectName.'_'.$resourceName] = $resourceConfig; |
|
| 51 | + $resolvedResources[$subjectName . '_' . $resourceName] = $resourceConfig; |
|
| 52 | 52 | } |
| 53 | 53 | } |
| 54 | 54 | } |
@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | public function load(array $config, ContainerBuilder $container) |
| 55 | 55 | { |
| 56 | 56 | $config = $this->processConfiguration($this->getConfiguration([], $container), $config); |
| 57 | - $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
| 57 | + $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
| 58 | 58 | |
| 59 | 59 | $this->registerResources('sylius', $config['driver'], $config['resources'], $container); |
| 60 | 60 | |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | |
| 83 | 83 | $container->prependExtensionConfig('sylius_theme', ['context' => 'sylius.theme.context.channel_based']); |
| 84 | 84 | |
| 85 | - $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
| 85 | + $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
| 86 | 86 | $this->prependHwiOauth($container, $loader); |
| 87 | 87 | } |
| 88 | 88 | |
@@ -39,7 +39,7 @@ discard block |
||
| 39 | 39 | public function load(array $config, ContainerBuilder $container) |
| 40 | 40 | { |
| 41 | 41 | $config = $this->processConfiguration($this->getConfiguration([], $container), $config); |
| 42 | - $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
| 42 | + $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
| 43 | 43 | $loader->load('services.xml'); |
| 44 | 44 | |
| 45 | 45 | if ($config['assets']['enabled']) { |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | */ |
| 67 | 67 | public function prepend(ContainerBuilder $container) |
| 68 | 68 | { |
| 69 | - $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
| 69 | + $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
| 70 | 70 | |
| 71 | 71 | $this->prependTwig($container, $loader); |
| 72 | 72 | } |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | public function installAssets($targetDir, $symlinkMask) |
| 80 | 80 | { |
| 81 | 81 | // Create the bundles directory otherwise symlink will fail. |
| 82 | - $targetDir = rtrim($targetDir, '/').'/bundles/'; |
|
| 82 | + $targetDir = rtrim($targetDir, '/') . '/bundles/'; |
|
| 83 | 83 | $this->filesystem->mkdir($targetDir); |
| 84 | 84 | |
| 85 | 85 | $effectiveSymlinkMask = $symlinkMask; |
@@ -138,7 +138,7 @@ discard block |
||
| 138 | 138 | |
| 139 | 139 | /** @var SplFileInfo[] $finder */ |
| 140 | 140 | foreach ($finder as $originFile) { |
| 141 | - $targetFile = $targetDir.'/'.$originFile->getRelativePathname(); |
|
| 141 | + $targetFile = $targetDir . '/' . $originFile->getRelativePathname(); |
|
| 142 | 142 | $targetFile = $this->pathResolver->resolve($targetFile, $theme); |
| 143 | 143 | |
| 144 | 144 | if (file_exists($targetFile) && AssetsInstallerInterface::HARD_COPY !== $symlinkMask) { |
@@ -234,13 +234,13 @@ discard block |
||
| 234 | 234 | $sources = []; |
| 235 | 235 | |
| 236 | 236 | foreach ($themes as $theme) { |
| 237 | - $sourceDir = $theme->getPath().'/'.$bundle->getName().'/public'; |
|
| 237 | + $sourceDir = $theme->getPath() . '/' . $bundle->getName() . '/public'; |
|
| 238 | 238 | if (is_dir($sourceDir)) { |
| 239 | 239 | $sources[] = $sourceDir; |
| 240 | 240 | } |
| 241 | 241 | } |
| 242 | 242 | |
| 243 | - $sourceDir = $bundle->getPath().'/Resources/public'; |
|
| 243 | + $sourceDir = $bundle->getPath() . '/Resources/public'; |
|
| 244 | 244 | if (is_dir($sourceDir)) { |
| 245 | 245 | $sources[] = $sourceDir; |
| 246 | 246 | } |
@@ -118,6 +118,6 @@ |
||
| 118 | 118 | */ |
| 119 | 119 | private function getCacheKey(TemplateReferenceInterface $template, ThemeInterface $theme) |
| 120 | 120 | { |
| 121 | - return $template->getLogicalName().'|'.$theme->getName(); |
|
| 121 | + return $template->getLogicalName() . '|' . $theme->getName(); |
|
| 122 | 122 | } |
| 123 | 123 | } |