mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Merge pull request #2143 from bcrowe/hotfix-extraSpace
Remove extra space around the brace in CakeSchema::_arrayDiffAssoc()
This commit is contained in:
commit
80fc94cf2a
1 changed files with 1 additions and 1 deletions
|
@ -551,7 +551,7 @@ class CakeSchema extends Object {
|
|||
continue;
|
||||
}
|
||||
$correspondingValue = $array2[$key];
|
||||
if (($value === null ) !== ($correspondingValue === null)) {
|
||||
if (($value === null) !== ($correspondingValue === null)) {
|
||||
$difference[$key] = $value;
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue