AttachmentEvent.php 270 B

1234567891011121314151617
  1. <?php
  2. namespace catchAdmin\system\events;
  3. use catchAdmin\system\model\Attachments;
  4. class AttachmentEvent
  5. {
  6. public function handle($params)
  7. {
  8. $file = $params['file'];
  9. unset($params['file']);
  10. Attachments::store($params, $file);
  11. }
  12. }