@@ -76,7 +76,7 @@ |
||
76 | 76 | |
77 | 77 | $settings = $this->settingsManager->load($schemaAlias); |
78 | 78 | |
79 | - return (bool)$settings->get($name); |
|
79 | + return (bool) $settings->get($name); |
|
80 | 80 | } |
81 | 81 | |
82 | 82 | /** |
@@ -79,14 +79,14 @@ |
||
79 | 79 | private function addKeywordsTransformer(FormBuilderInterface $builder) |
80 | 80 | { |
81 | 81 | $builder->get('keywords')->addModelTransformer(new CallbackTransformer( |
82 | - function ($originalKeywords) { |
|
82 | + function($originalKeywords) { |
|
83 | 83 | if (!is_array($originalKeywords)) { |
84 | 84 | return ''; |
85 | 85 | } |
86 | 86 | |
87 | 87 | return implode(', ', $originalKeywords); |
88 | 88 | }, |
89 | - function ($submittedKeywords) { |
|
89 | + function($submittedKeywords) { |
|
90 | 90 | return array_map('trim', explode(',', $submittedKeywords)); |
91 | 91 | } |
92 | 92 | )); |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | */ |
237 | 237 | public function getItemUnitsByVariant(ProductVariantInterface $variant) |
238 | 238 | { |
239 | - return $this->getItemUnits()->filter(function (OrderItemUnitInterface $itemUnit) use ($variant) { |
|
239 | + return $this->getItemUnits()->filter(function(OrderItemUnitInterface $itemUnit) use ($variant) { |
|
240 | 240 | return $variant === $itemUnit->getStockable(); |
241 | 241 | }); |
242 | 242 | } |
@@ -300,7 +300,7 @@ discard block |
||
300 | 300 | return null; |
301 | 301 | } |
302 | 302 | |
303 | - $payment = $this->payments->filter(function (BasePaymentInterface $payment) use ($state) { |
|
303 | + $payment = $this->payments->filter(function(BasePaymentInterface $payment) use ($state) { |
|
304 | 304 | return $payment->getState() === $state; |
305 | 305 | })->last(); |
306 | 306 |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | */ |
84 | 84 | public function configureOptions(OptionsResolver $resolver) |
85 | 85 | { |
86 | - $choiceList = function (Options $options) { |
|
86 | + $choiceList = function(Options $options) { |
|
87 | 87 | if (isset($options['subject'])) { |
88 | 88 | $methods = $this->resolver->getSupportedMethods($options['subject'], $options['criteria']); |
89 | 89 | } else { |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | return new ObjectChoiceList($methods, null, [], null, 'id'); |
94 | 94 | }; |
95 | 95 | |
96 | - $dataClass = function (Options $options) { |
|
96 | + $dataClass = function(Options $options) { |
|
97 | 97 | if ($options['multiple']) { |
98 | 98 | return null; |
99 | 99 | } |
@@ -45,7 +45,7 @@ |
||
45 | 45 | 'label' => 'sylius.form.action.customer_group', |
46 | 46 | 'property' => 'name', |
47 | 47 | 'class' => $this->groupRepository->getClassName(), |
48 | - 'query_builder' => function () { |
|
48 | + 'query_builder' => function() { |
|
49 | 49 | return $this->groupRepository->getFormQueryBuilder(); |
50 | 50 | }, |
51 | 51 | 'constraints' => array( |
@@ -45,7 +45,7 @@ |
||
45 | 45 | 'label' => 'sylius.form.action.customer_group', |
46 | 46 | 'property' => 'name', |
47 | 47 | 'class' => $this->groupRepository->getClassName(), |
48 | - 'query_builder' => function () { |
|
48 | + 'query_builder' => function() { |
|
49 | 49 | return $this->groupRepository->getFormQueryBuilder(); |
50 | 50 | }, |
51 | 51 | 'constraints' => array( |
@@ -68,7 +68,7 @@ |
||
68 | 68 | |
69 | 69 | $screenshotRelativePath = $screenshots[$screenshotNumber]; |
70 | 70 | |
71 | - return rtrim($theme->getPath(), \DIRECTORY_SEPARATOR) . \DIRECTORY_SEPARATOR . $screenshotRelativePath; |
|
71 | + return rtrim($theme->getPath(), \DIRECTORY_SEPARATOR).\DIRECTORY_SEPARATOR.$screenshotRelativePath; |
|
72 | 72 | } |
73 | 73 | |
74 | 74 | /** |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | function let(RepositoryInterface $themeRepository) |
35 | 35 | { |
36 | 36 | $this->beConstructedWith($themeRepository); |
37 | - $this->fixturesPath = realpath(__DIR__ . '/../Fixtures'); |
|
37 | + $this->fixturesPath = realpath(__DIR__.'/../Fixtures'); |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | function it_is_initializable() |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | |
55 | 55 | $this |
56 | 56 | ->streamScreenshotAction(42, 0) |
57 | - ->shouldBeBinaryFileResponseStreamingFile($this->fixturesPath . '/screenshot/0-amazing.jpg') |
|
57 | + ->shouldBeBinaryFileResponseStreamingFile($this->fixturesPath.'/screenshot/0-amazing.jpg') |
|
58 | 58 | ; |
59 | 59 | } |
60 | 60 | |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | public function getMatchers() |
114 | 114 | { |
115 | 115 | return [ |
116 | - 'beBinaryFileResponseStreamingFile' => function (BinaryFileResponse $response, $file) { |
|
116 | + 'beBinaryFileResponseStreamingFile' => function(BinaryFileResponse $response, $file) { |
|
117 | 117 | return $response->getFile()->getRealPath() === $file; |
118 | 118 | }, |
119 | 119 | ]; |
@@ -48,7 +48,7 @@ |
||
48 | 48 | public function getMatchers() |
49 | 49 | { |
50 | 50 | return [ |
51 | - 'beScreenshotWithTheFollowingProperties' => function (ThemeScreenshot $subject, array $properties) { |
|
51 | + 'beScreenshotWithTheFollowingProperties' => function(ThemeScreenshot $subject, array $properties) { |
|
52 | 52 | if (isset($properties['path']) && $subject->getPath() !== $properties['path']) { |
53 | 53 | return false; |
54 | 54 | } |