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.
Passed
Pull Request — master (#39)
by joseph
04:31
created

Client::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
c 0
b 0
f 0
rs 10
cc 1
eloc 2
nc 1
nop 1
1
<?php declare(strict_types=1);
2
3
namespace My\Test\Project\Entities;
4
// phpcs:disable
5
6
use EdmondsCommerce\DoctrineStaticMeta\Entity as DSM;
7
use EdmondsCommerce\DoctrineStaticMeta\Entity\Interfaces\Validation\EntityValidatorInterface;
8
use My\Test\Project\Entity\Fields\Interfaces\NameFieldInterface;
9
use My\Test\Project\Entity\Fields\Traits\NameFieldTrait;
10
use My\Test\Project\Entity\Interfaces\ClientInterface;
11
12
// phpcs:enable
13
class Client implements 
14
    ClientInterface,
15
    NameFieldInterface
16
{
17
18
	use DSM\Traits\UsesPHPMetaDataTrait;
19
	use DSM\Traits\ValidatedEntityTrait;
20
	use DSM\Fields\Traits\PrimaryKey\IdFieldTrait;
21
	use NameFieldTrait;
22
23
	public function __construct(EntityValidatorInterface $validator) {
24
		$this->setValidator($validator);
25
		$this->runInitMethods();
26
	}
27
}
28