@@ -125,6 +125,6 @@ |
||
125 | 125 | */ |
126 | 126 | $expressionAst = (new ExpressionLanguage())->parse($violation->getPropertyPath(), [])->getNodes(); |
127 | 127 | |
128 | - return (int) $expressionAst->nodes['node']->nodes[1]->attributes['value']; |
|
128 | + return (int)$expressionAst->nodes['node']->nodes[1]->attributes['value']; |
|
129 | 129 | } |
130 | 130 | } |
@@ -225,7 +225,7 @@ discard block |
||
225 | 225 | WHERE cache_id = :cacheId; |
226 | 226 | SQL |
227 | 227 | , [ |
228 | - 'cacheId' => (int) $cache['cache_id'], |
|
228 | + 'cacheId' => (int)$cache['cache_id'], |
|
229 | 229 | ]); |
230 | 230 | |
231 | 231 | $this->connection->executeQuery(<<<'SQL' |
@@ -237,19 +237,19 @@ discard block |
||
237 | 237 | WHERE cache_id = :cacheId |
238 | 238 | SQL |
239 | 239 | , [ |
240 | - 'cacheId' => (int) $cache['cache_id'], |
|
240 | + 'cacheId' => (int)$cache['cache_id'], |
|
241 | 241 | ]); |
242 | 242 | |
243 | 243 | $this->connection->executeQuery('DELETE FROM cache_desc_modified WHERE cache_id = :cacheId', [ |
244 | - 'cacheId' => (int) $cache['cache_id'], |
|
244 | + 'cacheId' => (int)$cache['cache_id'], |
|
245 | 245 | ]); |
246 | 246 | |
247 | 247 | $this->connection->executeQuery('DELETE FROM cache_ignore WHERE cache_id = :cacheId', [ |
248 | - 'cacheId' => (int) $cache['cache_id'], |
|
248 | + 'cacheId' => (int)$cache['cache_id'], |
|
249 | 249 | ]); |
250 | 250 | |
251 | 251 | $this->connection->executeQuery('DELETE FROM caches_modified WHERE cache_id = :cacheId', [ |
252 | - 'cacheId' => (int) $cache['cache_id'], |
|
252 | + 'cacheId' => (int)$cache['cache_id'], |
|
253 | 253 | ]); |
254 | 254 | } |
255 | 255 | } |
@@ -260,8 +260,8 @@ discard block |
||
260 | 260 | return []; |
261 | 261 | } |
262 | 262 | |
263 | - $ids = array_map(static function (array $cache) use ($idField) { |
|
264 | - return (int) $cache[$idField]; |
|
263 | + $ids = array_map(static function(array $cache) use ($idField) { |
|
264 | + return (int)$cache[$idField]; |
|
265 | 265 | }, $data); |
266 | 266 | |
267 | 267 | $pictures = $this->connection->fetchAll('SELECT * FROM pictures WHERE object_id IN (' . implode(',', $ids) . ') AND object_type = :objectType', [ |
@@ -281,8 +281,8 @@ discard block |
||
281 | 281 | return []; |
282 | 282 | } |
283 | 283 | |
284 | - $ids = array_map(static function (array $cache) use ($idField) { |
|
285 | - return (int) $cache[$idField]; |
|
284 | + $ids = array_map(static function(array $cache) use ($idField) { |
|
285 | + return (int)$cache[$idField]; |
|
286 | 286 | }, $data); |
287 | 287 | |
288 | 288 | return $this->connection->fetchAll('SELECT * FROM pictures_modified WHERE object_id IN (' . implode(',', $ids) . ') AND object_type = :objectType', [ |
@@ -1,4 +1,4 @@ |
||
1 | 1 | <?php return array ( |
2 | - 'version_number' => 1926, |
|
3 | - 'git_revision' => 'dbed1d0d908dcc00a4aa7387de2e08b727dccee8', |
|
2 | + 'version_number' => 1926, |
|
3 | + 'git_revision' => 'dbed1d0d908dcc00a4aa7387de2e08b727dccee8', |
|
4 | 4 | ); |
5 | 5 | \ No newline at end of file |
@@ -1,4 +1,4 @@ |
||
1 | -<?php return array ( |
|
1 | +<?php return array( |
|
2 | 2 | 'version_number' => 1926, |
3 | 3 | 'git_revision' => 'dbed1d0d908dcc00a4aa7387de2e08b727dccee8', |
4 | 4 | ); |
5 | 5 | \ No newline at end of file |
@@ -359,13 +359,13 @@ discard block |
||
359 | 359 | |
360 | 360 | file_put_contents( |
361 | 361 | __DIR__ . '/Entities/' . $classNameEntity . '.php', |
362 | - "<?php \n\n" . (string) $classEntity, |
|
362 | + "<?php \n\n" . (string)$classEntity, |
|
363 | 363 | LOCK_EX |
364 | 364 | ); |
365 | 365 | |
366 | 366 | file_put_contents( |
367 | 367 | __DIR__ . '/Entities/' . $classNameEntity . 'Test.php', |
368 | - "<?php \n\n use OcTest\Modules\AbstractModuleTest; \n\n" . (string) $classEntityTest, |
|
368 | + "<?php \n\n use OcTest\Modules\AbstractModuleTest; \n\n" . (string)$classEntityTest, |
|
369 | 369 | LOCK_EX |
370 | 370 | ); |
371 | 371 | |
@@ -378,7 +378,7 @@ discard block |
||
378 | 378 | use Oc\Repository\Exception\RecordNotFoundException; |
379 | 379 | use Oc\Repository\Exception\RecordNotPersistedException; |
380 | 380 | use Oc\Repository\Exception\RecordsNotFoundException; \n\n" . |
381 | - (string) $classRepository, |
|
381 | + (string)$classRepository, |
|
382 | 382 | LOCK_EX |
383 | 383 | ); |
384 | 384 | } |