@@ -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 | } |
@@ -26,7 +26,7 @@ |
||
26 | 26 | */ |
27 | 27 | public function load(array $config, ContainerBuilder $container) |
28 | 28 | { |
29 | - $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
29 | + $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
30 | 30 | $loader->load('services.xml'); |
31 | 31 | } |
32 | 32 | } |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | public function load(array $config, ContainerBuilder $container) |
33 | 33 | { |
34 | 34 | $config = $this->processConfiguration($this->getConfiguration([], $container), $config); |
35 | - $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
35 | + $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
36 | 36 | |
37 | 37 | $this->registerResources('sylius', $config['driver'], $this->resolveResources($config['resources'], $container), $container); |
38 | 38 | |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | foreach ($resources as $subjectName => $subjectConfig) { |
55 | 55 | foreach ($subjectConfig as $resourceName => $resourceConfig) { |
56 | 56 | if (is_array($resourceConfig)) { |
57 | - $resolvedResources[$subjectName.'_'.$resourceName] = $resourceConfig; |
|
57 | + $resolvedResources[$subjectName . '_' . $resourceName] = $resourceConfig; |
|
58 | 58 | } |
59 | 59 | } |
60 | 60 | } |
@@ -73,7 +73,7 @@ |
||
73 | 73 | ) { |
74 | 74 | $this->shouldThrow( |
75 | 75 | new \RuntimeException('Unknown restrict condition "foo"') |
76 | - )->during('restrict', [ $comparison, 'foo' ]); |
|
76 | + )->during('restrict', [$comparison, 'foo']); |
|
77 | 77 | } |
78 | 78 | |
79 | 79 | function it_should_return_the_expression_builder( |
@@ -26,7 +26,7 @@ |
||
26 | 26 | */ |
27 | 27 | public function load(array $config, ContainerBuilder $container) |
28 | 28 | { |
29 | - $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
29 | + $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
30 | 30 | |
31 | 31 | $loader->load('services.xml'); |
32 | 32 | } |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | public function load(array $config, ContainerBuilder $container) |
33 | 33 | { |
34 | 34 | $config = $this->processConfiguration($this->getConfiguration([], $container), $config); |
35 | - $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
35 | + $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
36 | 36 | |
37 | 37 | $loader->load('services.xml'); |
38 | 38 | |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | DriverProvider::get($metadata)->load($container, $metadata); |
84 | 84 | |
85 | 85 | if ($metadata->hasParameter('translation')) { |
86 | - $alias = $alias.'_translation'; |
|
86 | + $alias = $alias . '_translation'; |
|
87 | 87 | $resourceConfig = array_merge(['driver' => $resourceConfig['driver']], $resourceConfig['translation']); |
88 | 88 | |
89 | 89 | $resources = $container->hasParameter('sylius.resources') ? $container->getParameter('sylius.resources') : []; |
@@ -88,13 +88,13 @@ |
||
88 | 88 | case self::TYPE_NOT_EMPTY: |
89 | 89 | return $expressionBuilder->isNotNull($field); |
90 | 90 | case self::TYPE_CONTAINS: |
91 | - return $expressionBuilder->like($field, '%'.$value.'%'); |
|
91 | + return $expressionBuilder->like($field, '%' . $value . '%'); |
|
92 | 92 | case self::TYPE_NOT_CONTAINS: |
93 | - return $expressionBuilder->notLike($field, '%'.$value.'%'); |
|
93 | + return $expressionBuilder->notLike($field, '%' . $value . '%'); |
|
94 | 94 | case self::TYPE_STARTS_WITH: |
95 | - return $expressionBuilder->like($field, $value.'%'); |
|
95 | + return $expressionBuilder->like($field, $value . '%'); |
|
96 | 96 | case self::TYPE_ENDS_WITH: |
97 | - return $expressionBuilder->like($field, '%'.$value); |
|
97 | + return $expressionBuilder->like($field, '%' . $value); |
|
98 | 98 | case self::TYPE_IN: |
99 | 99 | return $expressionBuilder->in($field, array_map('trim', explode(',', $value))); |
100 | 100 | case self::TYPE_NOT_IN: |
@@ -40,8 +40,7 @@ |
||
40 | 40 | function it_should_assign_current_and_default_locale_to_given_translatable_entity( |
41 | 41 | TranslationLocaleProviderInterface $translationLocaleProvider, |
42 | 42 | TranslatableInterface $translatableEntity |
43 | - ) |
|
44 | - { |
|
43 | + ) { |
|
45 | 44 | $translationLocaleProvider->getDefaultLocaleCode()->willReturn('en_US'); |
46 | 45 | |
47 | 46 | $translatableEntity->setCurrentLocale('en_US')->shouldBeCalled(); |
@@ -43,8 +43,7 @@ discard block |
||
43 | 43 | LocaleContextInterface $localeContext, |
44 | 44 | TranslationLocaleProviderInterface $translationLocaleProvider, |
45 | 45 | TranslatableInterface $translatableEntity |
46 | - ) |
|
47 | - { |
|
46 | + ) { |
|
48 | 47 | $localeContext->getLocaleCode()->willReturn('de_DE'); |
49 | 48 | $translationLocaleProvider->getDefaultLocaleCode()->willReturn('en_US'); |
50 | 49 | |
@@ -58,8 +57,7 @@ discard block |
||
58 | 57 | LocaleContextInterface $localeContext, |
59 | 58 | TranslationLocaleProviderInterface $translationLocaleProvider, |
60 | 59 | TranslatableInterface $translatableEntity |
61 | - ) |
|
62 | - { |
|
60 | + ) { |
|
63 | 61 | $localeContext->getLocaleCode()->willThrow(new LocaleNotFoundException()); |
64 | 62 | $translationLocaleProvider->getDefaultLocaleCode()->willReturn('en_US'); |
65 | 63 |