mirror of
https://github.com/Neetpone/ponepaste.git
synced 2025-03-12 22:50:07 +01:00
13 lines
227 B
PHP
13 lines
227 B
PHP
<?php
|
|
|
|
namespace Illuminate\Contracts\Mail;
|
|
|
|
interface Attachable
|
|
{
|
|
/**
|
|
* Get an attachment instance for this entity.
|
|
*
|
|
* @return \Illuminate\Mail\Attachment
|
|
*/
|
|
public function toMailAttachment();
|
|
}
|