@@ -37,9 +37,9 @@ public function shouldIncludePageHTML(): bool
3737 return $ this ->override ['include_page_html ' ] ?? parent ::shouldIncludePageHTML ();
3838 }
3939
40- public function getIndexes (): array
40+ public function getIndexConfigurations (): array
4141 {
42- return $ this ->override ['indexes ' ] ?? parent ::getIndexes ();
42+ return $ this ->override ['indexes ' ] ?? parent ::getIndexConfigurations ();
4343 }
4444
4545 public function shouldUseSyncJobs (): bool
@@ -62,24 +62,24 @@ public function shouldTrackDependencies(): bool
6262 return $ this ->override ['auto_dependency_tracking ' ] ?? parent ::shouldTrackDependencies ();
6363 }
6464
65- public function getIndexesForClassName (string $ class ): array
65+ public function getIndexConfigurationsForClassName (string $ class ): array
6666 {
67- return $ this ->override [__FUNCTION__ ][$ class ] ?? parent ::getIndexesForClassName ($ class );
67+ return $ this ->override [__FUNCTION__ ][$ class ] ?? parent ::getIndexConfigurationsForClassName ($ class );
6868 }
6969
70- public function getIndexesForDocument (DocumentInterface $ doc ): array
70+ public function getIndexConfigurationsForDocument (DocumentInterface $ doc ): array
7171 {
72- return $ this ->override [__FUNCTION__ ][$ doc ->getIdentifier ()] ?? parent ::getIndexesForDocument ($ doc );
72+ return $ this ->override [__FUNCTION__ ][$ doc ->getIdentifier ()] ?? parent ::getIndexConfigurationsForDocument ($ doc );
7373 }
7474
7575 public function isClassIndexed (string $ class ): bool
7676 {
7777 return $ this ->override [__FUNCTION__ ][$ class ] ?? parent ::isClassIndexed ($ class );
7878 }
7979
80- public function getClassesForIndex (string $ index ): array
80+ public function getClassesForIndex (string $ indexSuffix ): array
8181 {
82- return $ this ->override [__FUNCTION__ ][$ index ] ?? parent ::getClassesForIndex ($ index );
82+ return $ this ->override [__FUNCTION__ ][$ indexSuffix ] ?? parent ::getClassesForIndex ($ indexSuffix );
8383 }
8484
8585 public function getSearchableClasses (): array
0 commit comments