Test Failed
Branch master (df1c42)
by Mostafa
15:23
created

Attachment::urls()   B

Complexity

Conditions 7
Paths 8

Size

Total Lines 24
Code Lines 14

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 7
eloc 14
c 1
b 0
f 0
nc 8
nop 0
dl 0
loc 24
rs 8.8333
1
<?php
2
3
namespace Mostafaznv\Larupload\Storage;
4
5
use Mostafaznv\Larupload\Concerns\Storage\Attachment\AttachmentActions;
6
use Mostafaznv\Larupload\Concerns\Storage\Attachment\AttachmentEvents;
7
use Mostafaznv\Larupload\Concerns\Storage\Attachment\BaseAttachment;
8
use Mostafaznv\Larupload\Concerns\Storage\Attachment\CoverAttachment;
9
use Mostafaznv\Larupload\Concerns\Storage\Attachment\QueueAttachment;
10
use Mostafaznv\Larupload\Concerns\Storage\Attachment\RetrieveAttachment;
11
use Mostafaznv\Larupload\Concerns\Storage\Attachment\StyleAttachment;
12
use Mostafaznv\Larupload\UploadEntities;
13
14
class Attachment extends UploadEntities
15
{
16
    use BaseAttachment;
0 ignored issues
show
introduced by
The trait Mostafaznv\Larupload\Con...tachment\BaseAttachment requires some properties which are not provided by Mostafaznv\Larupload\Storage\Attachment: $duration, $height, $width
Loading history...
17
    use AttachmentActions;
18
    use AttachmentEvents;
19
    use CoverAttachment;
20
    use StyleAttachment;
21
    use RetrieveAttachment;
22
    use QueueAttachment;
23
}
24