mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Strict null check on group parameter
This commit is contained in:
parent
75624c0279
commit
79846d25f8
1 changed files with 1 additions and 1 deletions
|
@ -533,7 +533,7 @@ class Cache {
|
|||
* @throws CacheException
|
||||
*/
|
||||
public static function groupConfigs($group = null) {
|
||||
if ($group == null) {
|
||||
if ($group === null) {
|
||||
return self::$_groups;
|
||||
}
|
||||
if (isset(self::$_groups[$group])) {
|
||||
|
|
Loading…
Reference in a new issue