GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( cde5b2...a2c9c7 )
by VEBER
13s
created

Upstream::retrieveUpstream()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 4
Ratio 100 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
dl 4
loc 4
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 1
crap 1
1
<?php
2
3
/*
4
 * This file is part of the KongAdminApi package.
5
 *
6
 * (c) Unikorp <https://github.com/unikorp>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Unikorp\KongAdminApi\Node;
13
14
use Psr\Http\Message\ResponseInterface;
15
use Unikorp\KongAdminApi\AbstractNode;
16
use Unikorp\KongAdminApi\Document\Upstream as Document;
17
18
/**
19
 * upstream
20
 *
21
 * @author VEBER Arnaud <https://github.com/VEBERArnaud>
22
 */
23 View Code Duplication
class Upstream extends AbstractNode
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
24
{
25
    /**
26
     * add upstream
27
     *
28
     * @param \Unikorp\KongAdminApi\Document\Upstream $document
29
     *
30
     * @return \Psr\Http\Message\ResponseInterface
31
     */
32 1
    public function addUpstream(Document $document): ResponseInterface
33
    {
34 1
        return $this->post('/upstreams/', $document);
35
    }
36
37
    /**
38
     * retrieve upstream
39
     *
40
     * @param string $nameOrId
41
     *
42
     * @return \Psr\Http\Message\ResponseInterface
43
     */
44 1
    public function retrieveUpstream(string $nameOrId): ResponseInterface
45
    {
46 1
        return $this->get(sprintf('/upstreams/%1$s', $nameOrId));
47
    }
48
49
    /**
50
     * list upstreams
51
     *
52
     * @return \Psr\Http\Message\ResponseInterface
53
     */
54 1
    public function listUpstreams(): ResponseInterface
55
    {
56 1
        return $this->get('/upstreams/');
57
    }
58
59
    /**
60
     * update upstream
61
     *
62
     * @param string $nameOrId
63
     * @param \Unikorp\KongAdminApi\Document\Upstream $document
64
     *
65
     * @return \Psr\Http\Message\ResponseInterface
66
     */
67 1
    public function updateUpstream(string $nameOrId, Document $document): ResponseInterface
68
    {
69 1
        return $this->patch(sprintf('/upstreams/%1$s', $nameOrId), $document);
70
    }
71
72
    /**
73
     * update or create upstream
74
     *
75
     * @param \Unikorp\KongAdminApi\Document\Upstream $document
76
     *
77
     * @return \Psr\Http\Message\ResponseInterface
78
     */
79 1
    public function updateOrCreateUpstream(Document $document): ResponseInterface
80
    {
81 1
        return $this->put('/upstreams/', $document);
82
    }
83
84
    /**
85
     * delete upstream
86
     *
87
     * @param string $nameOrId
88
     *
89
     * @return \Psr\Http\Message\ResponseInterface
90
     */
91 1
    public function deleteUpstream(string $nameOrId): ResponseInterface
92
    {
93 1
        return $this->delete(sprintf('/upstreams/%1$s', $nameOrId));
94
    }
95
}
96