Example #1
0
 /**
  * {@inheritDoc}
  */
 public function exists()
 {
     return $this->adapter->exists($this);
 }
Example #2
0
 /**
  * {@inheritDoc}
  */
 public function commit()
 {
     foreach ($this->toBeSaved as $item) {
         $this->adapter->saveItem($item);
     }
 }