@@ -20,6 +20,7 @@ |
||
20 | 20 | { |
21 | 21 | /** |
22 | 22 | * @param string $name |
23 | + * @return void |
|
23 | 24 | */ |
24 | 25 | public function setName($name); |
25 | 26 |
@@ -38,7 +38,7 @@ |
||
38 | 38 | HttpCacheEvent::EVENT_NAME => [ |
39 | 39 | ['clearCache', 0], |
40 | 40 | ], |
41 | - ]; |
|
41 | + ]; |
|
42 | 42 | } |
43 | 43 | |
44 | 44 | public function clearCache(HttpCacheEvent $event) |
@@ -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!') |
@@ -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 | )) |
@@ -171,6 +171,9 @@ |
||
171 | 171 | return; |
172 | 172 | } |
173 | 173 | |
174 | + /** |
|
175 | + * @param string $identifier |
|
176 | + */ |
|
174 | 177 | private function getQueryString($identifier, $parameters) |
175 | 178 | { |
176 | 179 | $queryStr = sprintf("SELECT * FROM [nt:unstructured] as S WHERE S.phpcr:class='SWP\Bundle\ContentBundle\Doctrine\ODM\PHPCR\Article' AND S.route=%s AND S.status=published", $identifier); |