@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | |
132 | 132 | $screenshotNodeDefinition |
133 | 133 | ->validate() |
134 | - ->ifTrue(function ($screenshot) { |
|
134 | + ->ifTrue(function($screenshot) { |
|
135 | 135 | return [] === $screenshot || ['path' => ''] === $screenshot; |
136 | 136 | }) |
137 | 137 | ->thenInvalid('Screenshot cannot be empty!') |
@@ -139,7 +139,7 @@ discard block |
||
139 | 139 | $screenshotNodeDefinition |
140 | 140 | ->beforeNormalization() |
141 | 141 | ->ifString() |
142 | - ->then(function ($value) { |
|
142 | + ->then(function($value) { |
|
143 | 143 | return ['path' => $value]; |
144 | 144 | }) |
145 | 145 | ; |
@@ -165,7 +165,7 @@ discard block |
||
165 | 165 | $authorNodeDefinition = $authorsNodeDefinition->prototype('array'); |
166 | 166 | $authorNodeDefinition |
167 | 167 | ->validate() |
168 | - ->ifTrue(function ($author) { |
|
168 | + ->ifTrue(function($author) { |
|
169 | 169 | return [] === $author; |
170 | 170 | }) |
171 | 171 | ->thenInvalid('Author cannot be empty!') |
@@ -39,7 +39,7 @@ |
||
39 | 39 | HttpCacheEvent::EVENT_NAME => [ |
40 | 40 | ['clearCache', 0], |
41 | 41 | ], |
42 | - ]; |
|
42 | + ]; |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | public function clearCache(HttpCacheEvent $event) |
@@ -91,10 +91,10 @@ |
||
91 | 91 | |
92 | 92 | $builder->get('cacheTimeInSeconds') |
93 | 93 | ->addModelTransformer(new CallbackTransformer( |
94 | - function ($value) { |
|
94 | + function($value) { |
|
95 | 95 | return $value; |
96 | 96 | }, |
97 | - function ($value) { |
|
97 | + function($value) { |
|
98 | 98 | return (int) $value; |
99 | 99 | } |
100 | 100 | )) |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | /** |
6 | 6 | * This file is part of the Superdesk Web Publisher Templates System. |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | /** |
6 | 6 | * This file is part of the Superdesk Web Publisher Templates System. |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | /** |
6 | 6 | * This file is part of the Superdesk Web Publisher Content Bundle. |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | /** |
6 | 6 | * This file is part of the Superdesk Web Publisher Content Bundle. |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | |
109 | 109 | private function populateLead(PackageInterface $package) |
110 | 110 | { |
111 | - return trim($package->getDescription().implode('', array_map(function (ItemInterface $item) { |
|
111 | + return trim($package->getDescription().implode('', array_map(function(ItemInterface $item) { |
|
112 | 112 | $this->ensureTypeIsAllowed($item->getType()); |
113 | 113 | |
114 | 114 | return ' '.$item->getDescription(); |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | |
118 | 118 | private function populateBody(PackageInterface $package) |
119 | 119 | { |
120 | - return $package->getBody().' '.implode('', array_map(function (ItemInterface $item) { |
|
120 | + return $package->getBody().' '.implode('', array_map(function(ItemInterface $item) { |
|
121 | 121 | $this->ensureTypeIsAllowed($item->getType()); |
122 | 122 | |
123 | 123 | return $item->getBody(); |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | /** |
6 | 6 | * This file is part of the Superdesk Web Publisher Content Bundle. |