Skip to content

Commit 2d0fbff

Browse files
committed
Dev: change the type.
1 parent e5d1848 commit 2d0fbff

3 files changed

Lines changed: 4 additions & 6 deletions

File tree

system/Config/ForeignCharacters.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class ForeignCharacters
1919
/**
2020
* Without further ado, the list of foreign characters.
2121
*
22-
* @var array
22+
* @var array<string, string>
2323
*/
2424
public $characterList = [
2525
'/ä|æ|ǽ/' => 'ae',

system/Config/Publisher.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,8 @@ class Publisher extends BaseConfig
3535

3636
/**
3737
* Disables Registrars to prevent modules from altering the restrictions.
38-
*
39-
* @return void
4038
*/
41-
final protected function registerProperties()
39+
final protected function registerProperties(): void
4240
{
4341
}
4442
}

system/Config/View.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class View extends BaseConfig
3434
* To prevent potential abuse, all filters MUST be defined here
3535
* in order for them to be available for use within the Parser.
3636
*
37-
* @var array
37+
* @var array<string, string>
3838
*/
3939
public $filters = [];
4040

@@ -43,7 +43,7 @@ class View extends BaseConfig
4343
* by the core Parser by creating aliases that will be replaced with
4444
* any callable. Can be single or tag pair.
4545
*
46-
* @var array
46+
* @var array<string, string>
4747
*/
4848
public $plugins = [];
4949

0 commit comments

Comments
 (0)