/**
  * {@inheritdoc}
  */
 public function set($key, $value)
 {
     parent::set($key, $value);
     $this->changed();
 }
Beispiel #2
0
 /**
  * {@inheritdoc}
  */
 public function set($key, $value)
 {
     if (is_array($value)) {
         $value = new StorageItem($value, $this);
     }
     parent::set($key, $value);
     $this->changed();
 }