Skip to content

Commit 85a714f

Browse files
chore: update ISetupCheckManager interface for new category/class limit handling
Signed-off-by: Josh <josh.t.richards@gmail.com>
1 parent bde85d5 commit 85a714f

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

lib/public/SetupCheck/ISetupCheckManager.php

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,15 @@ interface ISetupCheckManager {
1818
* @return array<string,array<string,SetupResult>> Result of each check, first level key is category, second level key is title
1919
*/
2020
public function runAll(): array;
21+
/**
22+
* @since 31.0.0
23+
* @return array<string,array<string,SetupResult>> Result of each check, first level key is category, second level key is title
24+
*/
25+
public function runClass(string $limitClass): array;
26+
/**
27+
* @since 31.0.0
28+
* @return array<string,array<string,SetupResult>> Result of each check, first level key is category, second level key is title
29+
*/
30+
public function runCategory(string $limitCategory): array;
31+
2132
}

0 commit comments

Comments
 (0)