Skip to content

Commit 81d95a7

Browse files
authored
Merge pull request #7051 from ddevsr/type-boolean-phpdoc
2 parents 6eaa945 + 265a047 commit 81d95a7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/Config/Cache.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ class Cache extends BaseConfig
134134
*
135135
* @see https://codeigniter.com/user_guide/libraries/caching.html#memcached
136136
*
137-
* @var array<string, boolean|int|string>
137+
* @var array<string, bool|int|string>
138138
*/
139139
public $memcached = [
140140
'host' => '127.0.0.1',

system/Encryption/Encryption.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class Encryption
7171
/**
7272
* Handlers that are to be installed
7373
*
74-
* @var array<string, boolean>
74+
* @var array<string, bool>
7575
*/
7676
protected $handlers = [];
7777

system/Test/Interfaces/FabricatorModel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public function insert($data = null, bool $returnID = true);
6767
* Sets $useSoftDeletes value so that we can temporarily override
6868
* the softdeletes settings. Can be used for all find* methods.
6969
*
70-
* @param boolean $val
70+
* @param bool $val
7171
*
7272
* @return Model
7373
*/

0 commit comments

Comments
 (0)