コード例 #1
0
 /**
  * Removes the file if necessary.
  *
  * @param EventArgs $args The event arguments.
  */
 public function postRemove(EventArgs $args)
 {
     $obj = $this->adapter->getObjectFromArgs($args);
     if ($this->isUploadable($obj)) {
         $this->storage->remove($obj);
     }
 }