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 (#101)
by joseph
18:59
created

BusinessIdentifierCodeFieldTraitTest   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 26
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 2
eloc 8
dl 0
loc 26
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A createEntityWithField() 0 3 1
A createDatabaseSchema() 0 3 1
1
<?php declare(strict_types=1);
2
3
namespace EdmondsCommerce\DoctrineStaticMeta\Tests\Large\Entity\Fields\Traits\String;
4
5
use EdmondsCommerce\DoctrineStaticMeta\Entity\Fields\Interfaces\String\BusinessIdentifierCodeFieldInterface;
6
use EdmondsCommerce\DoctrineStaticMeta\Entity\Fields\Traits\String\BusinessIdentifierCodeFieldTrait;
7
use EdmondsCommerce\DoctrineStaticMeta\Tests\Assets\AbstractTest;
8
use EdmondsCommerce\DoctrineStaticMeta\Tests\Large\Entity\Fields\Traits\AbstractFieldTraitLargeTest;
9
10
class BusinessIdentifierCodeFieldTraitTest extends AbstractFieldTraitLargeTest
11
{
12
    public const    WORK_DIR           = AbstractTest::VAR_PATH . '/' . self::TEST_TYPE_LARGE
13
                                         . '/BusinessIdentifierCodeFieldTraitTest/';
14
    protected const TEST_FIELD_FQN     = BusinessIdentifierCodeFieldTrait::class;
15
    protected const TEST_FIELD_PROP    = BusinessIdentifierCodeFieldInterface::PROP_BUSINESS_IDENTIFIER_CODE;
16
    protected const TEST_FIELD_DEFAULT = BusinessIdentifierCodeFieldInterface::DEFAULT_BUSINESS_IDENTIFIER_CODE;
17
18
    /**
19
     * @test
20
     * @large
21
     * @covers \EdmondsCommerce\DoctrineStaticMeta\Entity\Fields\Traits\String\BusinessIdentifierCodeFieldTrait
22
     */
23
    public function createEntityWithField(): void
24
    {
25
        parent::createEntityWithField(); // TODO: Change the autogenerated stub
26
    }
27
28
    /**
29
     * @test
30
     * @large
31
     * @covers \EdmondsCommerce\DoctrineStaticMeta\Entity\Fields\Traits\String\BusinessIdentifierCodeFieldTrait
32
     */
33
    public function createDatabaseSchema()
34
    {
35
        parent::createDatabaseSchema(); // TODO: Change the autogenerated stub
36
    }
37
}
38