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 (#178)
by joseph
127:53 queued 124:55
created

EmbeddableFakerDataCreator   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
eloc 6
dl 0
loc 11
ccs 0
cts 3
cp 0
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getNewObjectFqn() 0 4 1
1
<?php declare(strict_types=1);
2
3
namespace EdmondsCommerce\DoctrineStaticMeta\CodeGeneration\Creation\Src\Entity\Embeddable\FakerData;
4
5
use EdmondsCommerce\DoctrineStaticMeta\CodeGeneration\Creation\Src\Entity\Embeddable\AbstractEmbeddableCreator;
6
7
class EmbeddableFakerDataCreator extends AbstractEmbeddableCreator
8
{
9
    public const FIND_NAME = 'SkeletonEmbeddableFakerData';
10
11
    public const TEMPLATE_PATH = self::ROOT_TEMPLATE_PATH .
12
                                 '/src/Entity/Embeddable/FakerData/CatName/' . self::FIND_NAME . '.php';
13
14
    protected function getNewObjectFqn(): string
15
    {
16
        return $this->projectRootNamespace .
17
               '\\Entity\\Embeddable\\FakerData\\' . $this->catName . '\\' . $this->name . 'EmbeddableFakerData';
18
    }
19
}
20