File tree 5 files changed +7
-7
lines changed
5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ public function run(array $params)
17
17
return ;
18
18
}
19
19
20
- service ('setting ' )->flush ();
20
+ service ('settings ' )->flush ();
21
21
22
22
CLI ::write ('Settings cleared from the database. ' , 'green ' );
23
23
}
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ class Settings extends BaseConfig
13
13
* match a public class var here with the
14
14
* settings array containing 'class'.
15
15
*
16
- * @var string[]
16
+ * @var list< string>
17
17
*/
18
18
public $ handlers = ['database ' ];
19
19
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ class DatabaseHandler extends ArrayHandler
27
27
/**
28
28
* Array of contexts that have been stored.
29
29
*
30
- * @var null[]| string[]
30
+ * @var list< null>|list< string>
31
31
*/
32
32
private $ hydrated = [];
33
33
Original file line number Diff line number Diff line change 8
8
*
9
9
* @param mixed $value
10
10
*
11
- * @return array|bool|float|int|object|Settings|string|void|null
11
+ * @return array|bool|float|int|object|Settings|string|void|null
12
12
* @phpstan-return ($key is null ? Settings : ($value is null ? array|bool|float|int|object|string|null : void))
13
13
*/
14
14
function setting (?string $ key = null , $ value = null )
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ class Settings
17
17
/**
18
18
* An array of handlers for getting/setting the values.
19
19
*
20
- * @var BaseHandler[]
20
+ * @var list< BaseHandler>
21
21
*/
22
22
private array $ handlers = [];
23
23
@@ -117,7 +117,7 @@ public function flush()
117
117
/**
118
118
* Returns the handler that is set to store values.
119
119
*
120
- * @return BaseHandler[]
120
+ * @return list< BaseHandler>
121
121
*
122
122
* @throws RuntimeException
123
123
*/
@@ -141,7 +141,7 @@ private function getWriteHandlers()
141
141
/**
142
142
* Analyzes the given key and breaks it into the class.field parts.
143
143
*
144
- * @return string[]
144
+ * @return list< string>
145
145
*
146
146
* @throws InvalidArgumentException
147
147
*/
You can’t perform that action at this time.
0 commit comments