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 (#153)
by joseph
22:07
created

WeightEmbeddableFakerData::__invoke()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 10
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
cc 1
eloc 6
nc 1
nop 0
dl 0
loc 10
ccs 0
cts 9
cp 0
crap 2
rs 10
c 0
b 0
f 0
1
<?php declare(strict_types=1);
2
3
namespace EdmondsCommerce\DoctrineStaticMeta\Entity\Embeddable\FakerData\Attribute;
4
5
use EdmondsCommerce\DoctrineStaticMeta\Entity\Embeddable\Interfaces\Objects\Attribute\WeightEmbeddableInterface;
6
use EdmondsCommerce\DoctrineStaticMeta\Entity\Embeddable\Objects\Attribute\WeightEmbeddable;
7
use EdmondsCommerce\DoctrineStaticMeta\Entity\Fields\FakerData\AbstractFakerDataProvider;
8
9
class WeightEmbeddableFakerData extends AbstractFakerDataProvider
10
{
11
12
    /**
13
     * This magic method means that the object is callable like a closure,
14
     * and when that happens this invoke method is called.
15
     *
16
     * This method should return your fake data. You can use the generator to pull fake data from if that is useful
17
     *
18
     * @return mixed
19
     */
20
    public function __invoke()
21
    {
22
        $unitHighestKey = count(WeightEmbeddableInterface::VALID_UNITS) - 1;
23
        $unitKey        = $this->generator->numberBetween(0, $unitHighestKey);
24
        $embeddable     = new WeightEmbeddable(
25
            WeightEmbeddableInterface::VALID_UNITS[$unitKey],
26
            $this->generator->randomFloat()
27
        );
28
29
        return $embeddable;
30
    }
31
}
32