Skip to content

docs: fix boolean type to follow PSR-5 #7051

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/Config/Cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ class Cache extends BaseConfig
*
* @see https://codeigniter.com/user_guide/libraries/caching.html#memcached
*
* @var array<string, boolean|int|string>
* @var array<string, bool|int|string>
*/
public $memcached = [
'host' => '127.0.0.1',
Expand Down
2 changes: 1 addition & 1 deletion system/Encryption/Encryption.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class Encryption
/**
* Handlers that are to be installed
*
* @var array<string, boolean>
* @var array<string, bool>
*/
protected $handlers = [];

Expand Down
2 changes: 1 addition & 1 deletion system/Test/Interfaces/FabricatorModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public function insert($data = null, bool $returnID = true);
* Sets $useSoftDeletes value so that we can temporarily override
* the softdeletes settings. Can be used for all find* methods.
*
* @param boolean $val
* @param bool $val
*
* @return Model
*/
Expand Down