Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix coding standards, double whitespace
  • Loading branch information
ceeram committed Dec 15, 2012
1 parent 408f9dd commit 54607ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/Model/CakeSchema.php
Expand Up @@ -580,7 +580,7 @@ protected function _values($values) {
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') {
Expand Down

0 comments on commit 54607ba

Please sign in to comment.