AttachmentCover::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 1
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 0
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 1
rs 10
1
<?php
2
3
namespace Mostafaznv\Larupload\Storage\Proxy;
4
5
use Illuminate\Http\UploadedFile;
6
use Mostafaznv\Larupload\Storage\Attachment;
7
8
class AttachmentCover
9
{
10
    public function __construct(private readonly Attachment $attachment) {}
11
12
    public function update(UploadedFile $file): bool
13
    {
14
        return $this->attachment->updateCover($file);
15
    }
16
17
    public function detach(): bool
18
    {
19
        return $this->attachment->detachCover();
20
    }
21
}
22