@@ -86,7 +86,7 @@ |
||
| 86 | 86 | } |
| 87 | 87 | } |
| 88 | 88 | |
| 89 | - private function isAccepted(): bool |
|
| 89 | + private function isAccepted(): bool |
|
| 90 | 90 | { |
| 91 | 91 | return array_key_exists('status', $this->changeSet) |
| 92 | 92 | && $this->changeSet['status'][0] === ProofRequestStatus::STATUS_IN_PROGRESS |
@@ -16,11 +16,11 @@ |
||
| 16 | 16 | $this->playerRankingProvider = $playerRankingProvider; |
| 17 | 17 | } |
| 18 | 18 | |
| 19 | - /** |
|
| 20 | - * @param Request $request |
|
| 21 | - * @return array |
|
| 22 | - * @throws ORMException |
|
| 23 | - */ |
|
| 19 | + /** |
|
| 20 | + * @param Request $request |
|
| 21 | + * @return array |
|
| 22 | + * @throws ORMException |
|
| 23 | + */ |
|
| 24 | 24 | public function __invoke(Request $request): array |
| 25 | 25 | { |
| 26 | 26 | return $this->playerRankingProvider->getRankingCup( |
@@ -25,7 +25,8 @@ |
||
| 25 | 25 | |
| 26 | 26 | private FilesystemOperator $appStorage; |
| 27 | 27 | |
| 28 | - public function __construct(FilesystemOperator $appStorage) { |
|
| 28 | + public function __construct(FilesystemOperator $appStorage) |
|
| 29 | + { |
|
| 29 | 30 | $this->appStorage = $appStorage; |
| 30 | 31 | } |
| 31 | 32 | |