Exemplo n.º 1
0
 /**
  * {@inheritDoc}
  *
  * Converts booleans to strings.
  */
 public function set($key, $value)
 {
     if (is_bool($value)) {
         $value = $value ? 'true' : 'false';
     }
     return parent::set($key, $value);
 }