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 ( 75bdf9...8faa57 )
by joseph
83:56 queued 81:04
created

itCanCreateFindReplaceObjects()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 3
nc 1
nop 0
dl 0
loc 5
rs 10
c 0
b 0
f 0
1
<?php declare(strict_types=1);
2
3
namespace EdmondsCommerce\DoctrineStaticMeta\Tests\Small\CodeGeneration\Filesystem\Factory;
4
5
use EdmondsCommerce\DoctrineStaticMeta\CodeGeneration\Filesystem\Factory\FindReplaceFactory;
6
use EdmondsCommerce\DoctrineStaticMeta\CodeGeneration\Filesystem\File;
7
use EdmondsCommerce\DoctrineStaticMeta\CodeGeneration\Filesystem\File\FindReplace;
8
use PHPUnit\Framework\TestCase;
9
10
/**
11
 * @covers \EdmondsCommerce\DoctrineStaticMeta\CodeGeneration\Filesystem\Factory\FindReplaceFactory
12
 */
13
class FindReplaceFactoryTest extends TestCase
14
{
15
    /**
16
     * @test
17
     * @small
18
     */
19
    public function itCanCreateFindReplaceObjects()
20
    {
21
        $file    = new File();
22
        $created = $this->getFactory()->create($file);
23
        self::assertInstanceOf(FindReplace::class, $created);
24
    }
25
26
    private function getFactory(): FindReplaceFactory
27
    {
28
        return new FindReplaceFactory();
29
    }
30
}
31