Force the value of Dumper::setIndentation($num) to be of type integer.

This commit is contained in:
sun 2012-08-07 09:40:56 +02:00
parent 5be7237b69
commit 3e1a1abd5d
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ class Dumper
*/
public function setIndentation($num)
{
$this->indentation = $num;
$this->indentation = (int) $num;
}
/**