fix coding standards, double whitespace

This commit is contained in:
Ceeram 2012-12-15 18:24:29 +01:00
parent 408f9dd3b0
commit 54607ba0fa

View file

@ -580,7 +580,7 @@ class CakeSchema extends Object {
if (is_array($values)) {
foreach ($values as $key => $val) {
if (is_array($val)) {
$vals[] = "'{$key}' => array(" . implode(", ", $this->_values($val)) . ")";
$vals[] = "'{$key}' => array(" . implode(", ", $this->_values($val)) . ")";
} else {
$val = var_export($val, true);
if ($val === 'NULL') {