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.
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...
12
{
13
14
use VerifyHttpStatusResponseCode;
15
16
/**
17
* @var string The relative link for fetching a certain plan
18
*/
19
const FETCH_PLAN_LINK = '/plan/:identifier';
20
21
protected $baseUrl;
22
23
2
public function __construct(string $baseUrl)
24
{
25
2
$this->baseUrl = $baseUrl;
26
2
}
27
28
/**
29
* @param string|int $identifier
30
* @return mixed
31
* @throws \Gbowo\Exception\InvalidHttpResponseException if ann http response of 200 isn't returned
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.