Skip to content

Commit 2f6402a

Browse files
committed
docs: update sample config class
1 parent 0d68190 commit 2f6402a

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

user_guide_src/source/general/errors/005.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,7 @@
66

77
class Exceptions extends BaseConfig
88
{
9-
public $log = true;
9+
// ...
10+
public bool $log = true;
11+
// ...
1012
}

user_guide_src/source/general/errors/006.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,7 @@
66

77
class Exceptions extends BaseConfig
88
{
9-
public $ignoredCodes = [404];
9+
// ...
10+
public array $ignoreCodes = [404];
11+
// ...
1012
}

0 commit comments

Comments
 (0)