Example #1
0
 /**
  * @inheritdoc
  */
 public function unserialize($serialized)
 {
     if (!is_string($serialized)) {
         throw Exception::invalidUnserializeInput();
     }
     $this->options = array_merge($this->options, json_decode($serialized, true));
 }