| Total Complexity | 1 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | class Attachment extends SplFileInfo |
||
| 26 | {
|
||
| 27 | /** |
||
| 28 | * Attachment::$filename |
||
| 29 | * |
||
| 30 | * filename of email attachment |
||
| 31 | * |
||
| 32 | * @var string |
||
| 33 | */ |
||
| 34 | protected $filename; |
||
| 35 | |||
| 36 | // ------------------------------------------------------------------------ |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Attachment::setFilename |
||
| 40 | * |
||
| 41 | * Set Filename email attachment |
||
| 42 | * |
||
| 43 | * @param string $filename |
||
| 44 | * |
||
| 45 | * @return static |
||
| 46 | */ |
||
| 47 | public function setFilename($filename) |
||
| 52 | } |
||
| 53 | } |