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 ( 2b80ff...4a8ee3 )
by joseph
21s queued 13s
created

IsbnFakerData   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Test Coverage

Coverage 75%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __invoke() 0 5 1
1
<?php declare(strict_types=1);
2
3
namespace EdmondsCommerce\DoctrineStaticMeta\Entity\Fields\FakerData\String;
4
5
use EdmondsCommerce\DoctrineStaticMeta\Entity\Fields\FakerData\AbstractFakerDataProvider;
6
7
class IsbnFakerData extends AbstractFakerDataProvider
8
{
9
    private const FORMATTERS = [
10
        'isbn10',
11
        'isbn13',
12
    ];
13
14 2
    public function __invoke()
15
    {
16 2
        $pseudoProperty = self::FORMATTERS[array_rand(self::FORMATTERS)];
17
18 2
        return $this->generator->unique()->$pseudoProperty;
19
    }
20
}
21