@@ -74,7 +74,7 @@ |
||
74 | 74 | /** |
75 | 75 | * {@inheritDoc} |
76 | 76 | * |
77 | - * @return array |
|
77 | + * @return string[] |
|
78 | 78 | */ |
79 | 79 | public function check() |
80 | 80 | { |
@@ -92,7 +92,7 @@ |
||
92 | 92 | /** |
93 | 93 | * {@inheritDoc} |
94 | 94 | * |
95 | - * @return array |
|
95 | + * @return string[] |
|
96 | 96 | */ |
97 | 97 | public function check() |
98 | 98 | { |
@@ -53,7 +53,7 @@ |
||
53 | 53 | /** |
54 | 54 | * {@inheritDoc} |
55 | 55 | * |
56 | - * @return array |
|
56 | + * @return string[] |
|
57 | 57 | */ |
58 | 58 | public function check() |
59 | 59 | { |
@@ -27,7 +27,7 @@ |
||
27 | 27 | private static $permission = 'ADMIN'; |
28 | 28 | |
29 | 29 | /** |
30 | - * @param HTTPRequest $request |
|
30 | + * @param \SilverStripe\Control\HTTPRequest $request |
|
31 | 31 | * |
32 | 32 | * @return EnvironmentChecker |
33 | 33 | * |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | /** |
107 | 107 | * Run this test suite and return the result code of the worst result. |
108 | 108 | * |
109 | - * @return int |
|
109 | + * @return EnvironmentCheckSuiteResult |
|
110 | 110 | */ |
111 | 111 | public function run() |
112 | 112 | { |
@@ -195,7 +195,7 @@ discard block |
||
195 | 195 | /** |
196 | 196 | * Register a check against the named check suite. |
197 | 197 | * |
198 | - * @param string|array $names |
|
198 | + * @param string $names |
|
199 | 199 | * @param EnvironmentCheck $check |
200 | 200 | * @param string|array |
201 | 201 | */ |
@@ -9,9 +9,6 @@ |
||
9 | 9 | use SilverStripe\Core\Injector\Injectable; |
10 | 10 | use SilverStripe\Core\Injector\Injector; |
11 | 11 | use SilverStripe\EnvironmentCheck\EnvironmentCheck; |
12 | -use SilverStripe\ORM\ArrayList; |
|
13 | -use SilverStripe\View\ArrayData; |
|
14 | -use SilverStripe\View\ViewableData; |
|
15 | 12 | |
16 | 13 | /** |
17 | 14 | * Represents a suite of environment checks. |