Skip to content

Commit

Permalink
Add Support for boolean as to string into yaml extension
Browse files Browse the repository at this point in the history
  • Loading branch information
ruian committed Apr 19, 2012
1 parent 3bd2e01 commit 45ada32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Symfony/Bridge/Twig/Extension/YamlExtension.php
Expand Up @@ -52,7 +52,7 @@ public function dump($value)
return '%'.gettype($value).'% '.$this->encode($value);
}

return $value;
return $this->encode($value);
}

/**
Expand Down

0 comments on commit 45ada32

Please sign in to comment.