/**
  * {@inheritdoc}
  */
 public function rollback()
 {
     if ($this->transactionDepth === 1) {
         parent::rollback();
     }
     $this->transactionDepth -= 1;
     return $this;
 }