Skip to content

Commit 29d0c0c

Browse files
authored
Merge pull request #123 from codeigniter4/command-fix
2 parents f23f501 + 1288475 commit 29d0c0c

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

src/Commands/ClearSettings.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public function run(array $params)
1717
return;
1818
}
1919

20-
service('setting')->flush();
20+
service('settings')->flush();
2121

2222
CLI::write('Settings cleared from the database.', 'green');
2323
}

src/Config/Settings.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class Settings extends BaseConfig
1313
* match a public class var here with the
1414
* settings array containing 'class'.
1515
*
16-
* @var string[]
16+
* @var list<string>
1717
*/
1818
public $handlers = ['database'];
1919

src/Handlers/DatabaseHandler.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class DatabaseHandler extends ArrayHandler
2727
/**
2828
* Array of contexts that have been stored.
2929
*
30-
* @var null[]|string[]
30+
* @var list<null>|list<string>
3131
*/
3232
private $hydrated = [];
3333

src/Helpers/setting_helper.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
* @param mixed $value
1010
*
11-
* @return array|bool|float|int|object|Settings|string|void|null
11+
* @return array|bool|float|int|object|Settings|string|void|null
1212
* @phpstan-return ($key is null ? Settings : ($value is null ? array|bool|float|int|object|string|null : void))
1313
*/
1414
function setting(?string $key = null, $value = null)

src/Settings.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Settings
1717
/**
1818
* An array of handlers for getting/setting the values.
1919
*
20-
* @var BaseHandler[]
20+
* @var list<BaseHandler>
2121
*/
2222
private array $handlers = [];
2323

@@ -117,7 +117,7 @@ public function flush()
117117
/**
118118
* Returns the handler that is set to store values.
119119
*
120-
* @return BaseHandler[]
120+
* @return list<BaseHandler>
121121
*
122122
* @throws RuntimeException
123123
*/
@@ -141,7 +141,7 @@ private function getWriteHandlers()
141141
/**
142142
* Analyzes the given key and breaks it into the class.field parts.
143143
*
144-
* @return string[]
144+
* @return list<string>
145145
*
146146
* @throws InvalidArgumentException
147147
*/

0 commit comments

Comments
 (0)