Attachable.php 227 B

12345678910111213
  1. <?php
  2. namespace Illuminate\Contracts\Mail;
  3. interface Attachable
  4. {
  5. /**
  6. * Get an attachment instance for this entity.
  7. *
  8. * @return \Illuminate\Mail\Attachment
  9. */
  10. public function toMailAttachment();
  11. }