Ejemplo n.º 1
0
 /**
  * {@inheritdoc}
  */
 public function transactional($func)
 {
     if (!is_callable($func)) {
         throw new \InvalidArgumentException('Expected argument of type "callable", got "' . gettype($func) . '"');
     }
     return parent::transactional($func);
 }