Total Complexity | 1 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | class DocumentAttachment extends Model |
||
18 | { |
||
19 | use Query\Findable; |
||
20 | use Persistance\Storable; |
||
21 | use Persistance\Downloadable; |
||
22 | |||
23 | protected $fillable = [ |
||
24 | 'ID', |
||
25 | 'Attachment', |
||
26 | 'Document', |
||
27 | 'FileName', |
||
28 | 'FileSize', |
||
29 | 'Url', |
||
30 | ]; |
||
31 | |||
32 | protected $url = 'documents/DocumentAttachments'; |
||
33 | |||
34 | /** |
||
35 | * @return string |
||
36 | */ |
||
37 | public function getDownloadUrl() |
||
42 |