Skip to content

Commit 9235807

Browse files
committed
refactor: rename apiFacade var
1 parent c83a168 commit 9235807

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build/src/php/FileGenerator/Application/ApiSearchGenerator.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
private const SPECIAL_ENDING_CHARS = ['=', '*', '?', '+', '>', '<', '!'];
1212

1313
public function __construct(
14-
private ApiFacadeInterface $repository
14+
private ApiFacadeInterface $apiFacade
1515
) {
1616
}
1717

@@ -36,7 +36,7 @@ public function generateSearchIndex(): array
3636
*/
3737
$groupFnNameAppearances = [];
3838
$result = [];
39-
$groupedPhelFns = $this->repository->getPhelFunctions();
39+
$groupedPhelFns = $this->apiFacade->getPhelFunctions();
4040

4141
foreach ($groupedPhelFns as $fn) {
4242
$groupKey = $fn->groupKey();

0 commit comments

Comments
 (0)