Test Failed
Branch feature/v1_stable_fixes (e805e7)
by Diego
04:22
created

IssueCategories::search()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
c 0
b 0
f 0
nc 1
nop 1
dl 0
loc 4
rs 10
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Blackmine\Repository\Projects;
6
7
use Blackmine\Exception\MethodNotImplementedException;
8
use Blackmine\Model\AbstractModel;
9
use Blackmine\Model\Project\IssueCategory;
10
use Blackmine\Repository\AbstractRepository;
11
use Doctrine\Common\Collections\ArrayCollection;
12
13
class IssueCategories extends AbstractRepository
14
{
15
    public const API_ROOT = "issue_categories";
16
17
    public function getModelClass(): string
18
    {
19
        return IssueCategory::class;
20
    }
21
22
    /**
23
     * @throws MethodNotImplementedException
24
     */
25
    public function all(?string $endpoint = null): ArrayCollection
26
    {
27
        throw new MethodNotImplementedException(
28
            "Method " . __FUNCTION__ . " not implemented for apì: " . self::API_ROOT
29
        );
30
    }
31
32
    /**
33
     * @throws MethodNotImplementedException
34
     */
35
    public function create(AbstractModel $model): ?AbstractModel
36
    {
37
        throw new MethodNotImplementedException(
38
            "Method " . __FUNCTION__ . " not implemented for apì: " . self::API_ROOT
39
        );
40
    }
41
42
    public function delete(AbstractModel $model): void
43
    {
44
        /** @var IssueCategory $model */
45
        if ($model->getReassignTo() !== null) {
46
            $endpoint_url = $this->getEndpoint() . "/" . $model->getId() . "." . $this->client->getFormat() . "?reassign_to_id=" . $model->getReassignTo()->getId();
47
            $this->client->delete($endpoint_url);
48
        } else {
49
            parent::delete($model);
50
        }
51
    }
52
}
53