| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 8 | 
| Code Lines | 6 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php namespace Arcanesoft\Media\Entities;  | 
            ||
| 54 | public function toArray(): array  | 
            ||
| 55 |     { | 
            ||
| 56 | return array_merge(parent::toArray(), [  | 
            ||
| 57 | 'url' => $this->url,  | 
            ||
| 58 | 'mimetype' => $this->mimetype,  | 
            ||
| 59 | 'lastModified' => $this->lastModified,  | 
            ||
| 60 | 'visibility' => $this->visibility,  | 
            ||
| 61 | 'size' => $this->size,  | 
            ||
| 62 | ]);  | 
            ||
| 65 |