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
20:25
created

SkeletonEmbeddableFakerData::__invoke()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 8
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

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