zlibproxy/vendor/illuminate/contracts/Mail/Attachable.php

14 lines
227 B
PHP
Raw Normal View History

2023-01-02 12:56:44 +01:00
<?php
namespace Illuminate\Contracts\Mail;
interface Attachable
{
/**
* Get an attachment instance for this entity.
*
* @return \Illuminate\Mail\Attachment
*/
public function toMailAttachment();
}