@@ -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 | * balloon |
@@ -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 | * balloon |
@@ -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 | * balloon |
@@ -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 | * balloon |
@@ -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 | * balloon |
@@ -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 | * balloon |
@@ -50,7 +50,6 @@ |
||
| 50 | 50 | /** |
| 51 | 51 | * Constructor. |
| 52 | 52 | * |
| 53 | - * @param App $app |
|
| 54 | 53 | * @param Async $async |
| 55 | 54 | * @param LoggerInterface $logger |
| 56 | 55 | * @param GetOpt $getopt |
@@ -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 | * balloon |
@@ -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 | * balloon |
@@ -341,7 +341,7 @@ |
||
| 341 | 341 | } |
| 342 | 342 | |
| 343 | 343 | $this->logger->debug('elasticsarch blob document ['.$result['_id'].'] has no references left, remove completely', [ |
| 344 | - 'category' => get_class($this), |
|
| 344 | + 'category' => get_class($this), |
|
| 345 | 345 | ]); |
| 346 | 346 | |
| 347 | 347 | return $this->deleteBlob($result['_id']); |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | /** |
| 6 | 6 | * balloon |
@@ -271,7 +271,7 @@ discard block |
||
| 271 | 271 | protected function addShare(Collection $collection): bool |
| 272 | 272 | { |
| 273 | 273 | $that = $this; |
| 274 | - $collection->doRecursiveAction(function ($node) use ($that) { |
|
| 274 | + $collection->doRecursiveAction(function($node) use ($that) { |
|
| 275 | 275 | if ($node instanceof Collection) { |
| 276 | 276 | $that->addShare($node); |
| 277 | 277 | } else { |
@@ -292,7 +292,7 @@ discard block |
||
| 292 | 292 | protected function deleteShare(Collection $collection): bool |
| 293 | 293 | { |
| 294 | 294 | $that = $this; |
| 295 | - $collection->doRecursiveAction(function ($node) use ($that) { |
|
| 295 | + $collection->doRecursiveAction(function($node) use ($that) { |
|
| 296 | 296 | if ($node instanceof Collection) { |
| 297 | 297 | $that->deleteShare($node); |
| 298 | 298 | } else { |
@@ -72,8 +72,7 @@ discard block |
||
| 72 | 72 | /** |
| 73 | 73 | * Constructor. |
| 74 | 74 | * |
| 75 | - * @param Elasticsarch $es |
|
| 76 | - * @param Storage $storage |
|
| 75 | + * @param Elasticsearch $es |
|
| 77 | 76 | * @param Server $server |
| 78 | 77 | * @param NodeAttributeDecorator $decorator |
| 79 | 78 | * @param LoggerInterface $logger |
@@ -368,7 +367,7 @@ discard block |
||
| 368 | 367 | * |
| 369 | 368 | * @param NodeInterface $node |
| 370 | 369 | * |
| 371 | - * @return array |
|
| 370 | + * @return NodeInterface |
|
| 372 | 371 | */ |
| 373 | 372 | protected function getParams(NodeInterface $node): array |
| 374 | 373 | { |
@@ -439,7 +438,6 @@ discard block |
||
| 439 | 438 | /** |
| 440 | 439 | * Add or update blob. |
| 441 | 440 | * |
| 442 | - * @param File $node |
|
| 443 | 441 | * |
| 444 | 442 | * @return bool |
| 445 | 443 | */ |
@@ -480,8 +478,6 @@ discard block |
||
| 480 | 478 | * Prepare references update. |
| 481 | 479 | * |
| 482 | 480 | * @param array $references |
| 483 | - * @param array $new_references |
|
| 484 | - * @param array $new_share_references |
|
| 485 | 481 | * |
| 486 | 482 | * @return array |
| 487 | 483 | */ |
@@ -555,7 +551,6 @@ discard block |
||
| 555 | 551 | /** |
| 556 | 552 | * Update blob. |
| 557 | 553 | * |
| 558 | - * @param File $file |
|
| 559 | 554 | * @param array $meta |
| 560 | 555 | * |
| 561 | 556 | * @return bool |