From bc2fcf421f66f9b986f50e0df176b783f3726063 Mon Sep 17 00:00:00 2001 From: Bryan Crowe Date: Wed, 16 Oct 2013 09:52:29 -0400 Subject: [PATCH] Remove extra space around the brace in CakeSchema::_arrayDiffAssoc() --- lib/Cake/Model/CakeSchema.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Cake/Model/CakeSchema.php b/lib/Cake/Model/CakeSchema.php index 6c4079e65..7436b6308 100644 --- a/lib/Cake/Model/CakeSchema.php +++ b/lib/Cake/Model/CakeSchema.php @@ -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; }