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
Pull Request — master (#126)
by joseph
28:55
created

AbstractEntityFactory::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php declare(strict_types=1);
2
3
namespace TemplateNamespace\Entity\Repositories;
4
5
// phpcs:disable -- line length
6
use EdmondsCommerce\DoctrineStaticMeta\Entity as DSM;
7
8
// phpcs:enable
9
10
/**
11
 * @SuppressWarnings(PHPMD.NumberOfChildren)
12
 */
13
class AbstractEntityFactory
14
{
15
16
    /**
17
     * @var DSM\Factory\EntityFactory
18
     */
19
    protected $entityFactory;
20
21
    public function __construct(DSM\Factory\EntityFactory $entityFactory)
22
    {
23
        $this->entityFactory = $entityFactory;
24
    }
25
}
26