Versions::search()   A
last analyzed

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\Version;
10
use Blackmine\Repository\AbstractRepository;
11
use Doctrine\Common\Collections\ArrayCollection;
12
13
class Versions extends AbstractRepository
14
{
15
    public const API_ROOT = "versions";
16
17
    public function getModelClass(): string
18
    {
19
        return Version::class;
20
    }
21
22
    /**
23
     * @throws MethodNotImplementedException
24
     */
25
    public function create(AbstractModel $model): ?AbstractModel
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 all(?string $endpoint = null): ArrayCollection
36
    {
37
        throw new MethodNotImplementedException(
38
            "Method " . __FUNCTION__ . " not implemented for apì: " . self::API_ROOT
39
        );
40
    }
41
42
    /**
43
     * @throws MethodNotImplementedException
44
     */
45
    public function search(array $params = []): ArrayCollection
46
    {
47
        throw new MethodNotImplementedException(
48
            "Method " . __FUNCTION__ . " not implemented for apì: " . self::API_ROOT
49
        );
50
    }
51
}
52