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 ( 08e101...6f7bef )
by joseph
23:56 queued 01:38
created

metaForBusinessIdentifierCode()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 18
Code Lines 12

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
cc 1
eloc 12
nc 1
nop 1
dl 0
loc 18
ccs 0
cts 18
cp 0
crap 2
rs 9.8666
c 0
b 0
f 0
1
<?php declare(strict_types=1);
2
3
namespace EdmondsCommerce\DoctrineStaticMeta\Entity\Fields\Traits\String;
4
5
// phpcs:disable
6
7
use Doctrine\DBAL\Types\Type;
8
use Doctrine\ORM\Mapping\Builder\ClassMetadataBuilder;
9
use Doctrine\ORM\Mapping\Builder\FieldBuilder;
10
use EdmondsCommerce\DoctrineStaticMeta\Entity\Fields\Interfaces\String\BusinessIdentifierCodeFieldInterface;
11
use EdmondsCommerce\DoctrineStaticMeta\MappingHelper;
12
use Symfony\Component\Validator\Constraints\Bic;
13
use Symfony\Component\Validator\Constraints\Length;
14
use Symfony\Component\Validator\Mapping\ClassMetadata as ValidatorClassMetaData;
15
16
// phpcs:enable
17
18
/**
19
 * Trait BusinessIdentifierCodeFieldTrait
20
 *
21
 * A Business Identifier Code also known as SWIFT-BIC, BIC, SWIFT ID or SWIFT code
22
 *
23
 * @see     https://en.wikipedia.org/wiki/ISO_9362
24
 *
25
 * @package EdmondsCommerce\DoctrineStaticMeta\Entity\Fields\Traits\String
26
 */
27
trait BusinessIdentifierCodeFieldTrait
28
{
29
30
    /**
31
     * @var string|null
32
     */
33
    private $businessIdentifierCode;
34
35
    /**
36
     * @SuppressWarnings(PHPMD.StaticAccess)
37
     */
38
    public static function metaForBusinessIdentifierCode(ClassMetadataBuilder $builder): void
39
    {
40
        $fieldBuilder = new FieldBuilder(
41
            $builder,
42
            [
43
                'fieldName' => BusinessIdentifierCodeFieldInterface::PROP_BUSINESS_IDENTIFIER_CODE,
44
                'type'      => Type::STRING,
45
                'default'   => BusinessIdentifierCodeFieldInterface::DEFAULT_BUSINESS_IDENTIFIER_CODE,
46
            ]
47
        );
48
        $fieldBuilder
49
            ->columnName(MappingHelper::getColumnNameForField(
50
                BusinessIdentifierCodeFieldInterface::PROP_BUSINESS_IDENTIFIER_CODE
51
            ))
52
            ->nullable(true)
53
            ->unique(false)
54
            ->length(20)
55
            ->build();
56
    }
57
58
    /**
59
     * This method sets the validation for this field.
60
     *
61
     * You should add in as many relevant property constraints as you see fit.
62
     *
63
     * @see https://symfony.com/doc/current/validation.html#supported-constraints
64
     *
65
     * @param ValidatorClassMetaData $metadata
66
     *
67
     * @throws \Symfony\Component\Validator\Exception\MissingOptionsException
68
     * @throws \Symfony\Component\Validator\Exception\InvalidOptionsException
69
     * @throws \Symfony\Component\Validator\Exception\ConstraintDefinitionException
70
     */
71
    protected static function validatorMetaForPropertyBusinessIdentifierCode(ValidatorClassMetaData $metadata): void
72
    {
73
        $metadata->addPropertyConstraints(
74
            BusinessIdentifierCodeFieldInterface::PROP_BUSINESS_IDENTIFIER_CODE,
75
            [
76
                new Bic(),
77
                new Length(
78
                    [
79
                        'min' => 0,
80
                        'max' => 20,
81
                    ]
82
                ),
83
            ]
84
        );
85
    }
86
87
    /**
88
     * @return string|null
89
     */
90
    public function getBusinessIdentifierCode(): ?string
91
    {
92
        if (null === $this->businessIdentifierCode) {
93
            return BusinessIdentifierCodeFieldInterface::DEFAULT_BUSINESS_IDENTIFIER_CODE;
94
        }
95
96
        return $this->businessIdentifierCode;
97
    }
98
99
    /**
100
     * @param string|null $businessIdentifierCode
101
     *
102
     * @return self
103
     */
104
    private function setBusinessIdentifierCode(?string $businessIdentifierCode): self
105
    {
106
        $this->updatePropertyValue(
0 ignored issues
show
Bug introduced by
It seems like updatePropertyValue() must be provided by classes using this trait. How about adding it as abstract method to this trait? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

106
        $this->/** @scrutinizer ignore-call */ 
107
               updatePropertyValue(
Loading history...
107
            BusinessIdentifierCodeFieldInterface::PROP_BUSINESS_IDENTIFIER_CODE,
108
            $businessIdentifierCode
109
        );
110
111
        return $this;
112
    }
113
}
114