Delete::delete()   A
last analyzed

Complexity

Conditions 2
Paths 2

Size

Total Lines 8

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 8
rs 10
c 0
b 0
f 0
cc 2
nc 2
nop 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace App\Service\Note;
6
7
class Delete extends BaseNoteService
8
{
9
    public function delete(int $noteId)
10
    {
11
        $this->getOneFromDb($noteId);
12
        $this->noteRepository->deleteNote($noteId);
13
        if (self::isRedisEnabled() === true) {
14
            $this->deleteFromCache($noteId);
15
        }
16
    }
17
}
18