daften/addressing-bundle

View on GitHub

Showing 213 of 213 total issues

Method __construct has 5 arguments (exceeds 4 allowed). Consider refactoring.
Open

        CountryRepositoryInterface $countryRepository,
        AddressFormatRepositoryInterface $addressFormatRepository,
        SubdivisionRepositoryInterface $subdivisionRepository,
        string $gmapsApiKey,
        RequestStack $requestStack
Severity: Minor
Found in Service/GmapsAutocompleteService.php - About 35 mins to fix

    TRUE, FALSE and NULL must be lowercase; expected "null" but found "NULL"
    Open

                $values[$name] = NULL;

    TRUE, FALSE and NULL must be lowercase; expected "false" but found "FALSE"
    Open

            $content = nl2br($content, FALSE);

    TRUE, FALSE and NULL must be lowercase; expected "null" but found "NULL"
    Open

        return isset($property_mapping[$field]) ? $property_mapping[$field] : NULL;
    Severity: Minor
    Found in FieldHelper.php by phpcodesniffer

    The closing brace for the class must go on the next line after the body
    Open

    }
    Severity: Minor
    Found in Twig/AddressExtension.php by phpcodesniffer

    Expected 1 space before opening brace; found 0
    Open

                function (FormEvent $event){

    Opening brace of a class must be on the line after the definition
    Open

    class FieldHelper {
    Severity: Minor
    Found in FieldHelper.php by phpcodesniffer

    The closing brace for the class must go on the next line after the body
    Open

    }
    Severity: Minor
    Found in FieldHelper.php by phpcodesniffer

    Avoid too many return statements within this method.
    Open

            return new FieldOverrides([]);
    Severity: Major
    Found in Form/EventListener/AddressEmbeddableTypeSubscriber.php - About 30 mins to fix

      Avoid too many return statements within this method.
      Open

                          return $constraint->fieldOverrides;
      Severity: Major
      Found in Form/EventListener/AddressEmbeddableTypeSubscriber.php - About 30 mins to fix

        Function getAddressDefault has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

            public function getAddressDefault(AddressEmbeddable $addressEmbeddable): string
            {
                $country_code = $addressEmbeddable->getCountryCode();
                $address_format = $this->addressFormatRepository->get($country_code);
        
        
        Severity: Minor
        Found in Service/AddressOutputService.php - About 25 mins to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Avoid using static access to class '\CommerceGuys\Addressing\AddressFormat\AddressField' in method 'getValuesForDefault'.
        Open

                foreach (AddressField::getAll() as $field) {
        Severity: Minor
        Found in Service/AddressOutputService.php by phpmd

        StaticAccess

        Since: 1.4.0

        Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

        Example

        class Foo
        {
            public function bar()
            {
                Bar::baz();
            }
        }

        Source https://phpmd.org/rules/cleancode.html#staticaccess

        Avoid unused local variables such as '$address'.
        Open

                    $use_local_name = Locale::matchCandidates($address->getLocale(), $subdivision->getLocale());
        Severity: Minor
        Found in Service/AddressOutputService.php by phpmd

        UnusedLocalVariable

        Since: 0.2

        Detects when a local variable is declared and/or assigned, but not used.

        Example

        class Foo {
            public function doSomething()
            {
                $i = 5; // Unused
            }
        }

        Source https://phpmd.org/rules/unusedcode.html#unusedlocalvariable

        Avoid using static access to class '\CommerceGuys\Addressing\AddressFormat\AddressField' in method 'getValuesForPlain'.
        Open

                foreach (AddressField::getAll() as $field) {
        Severity: Minor
        Found in Service/AddressOutputService.php by phpmd

        StaticAccess

        Since: 1.4.0

        Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

        Example

        class Foo
        {
            public function bar()
            {
                Bar::baz();
            }
        }

        Source https://phpmd.org/rules/cleancode.html#staticaccess

        Avoid using static access to class '\Daften\Bundle\AddressingBundle\FieldHelper' in method 'getAddressDefault'.
        Open

                $content = FieldHelper::replacePlaceholders($format_string, $replacements);
        Severity: Minor
        Found in Service/AddressOutputService.php by phpmd

        StaticAccess

        Since: 1.4.0

        Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

        Example

        class Foo
        {
            public function bar()
            {
                Bar::baz();
            }
        }

        Source https://phpmd.org/rules/cleancode.html#staticaccess

        Avoid using static access to class '\Daften\Bundle\AddressingBundle\FieldHelper' in method 'getAddressDefault'.
        Open

                    $property = FieldHelper::getPropertyName($field);
        Severity: Minor
        Found in Service/AddressOutputService.php by phpmd

        StaticAccess

        Since: 1.4.0

        Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

        Example

        class Foo
        {
            public function bar()
            {
                Bar::baz();
            }
        }

        Source https://phpmd.org/rules/cleancode.html#staticaccess

        Avoid using static access to class '\Daften\Bundle\AddressingBundle\FieldHelper' in method 'getAddressInline'.
        Open

                $content = FieldHelper::replacePlaceholders($format_string, $replacements);
        Severity: Minor
        Found in Service/AddressOutputService.php by phpmd

        StaticAccess

        Since: 1.4.0

        Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

        Example

        class Foo
        {
            public function bar()
            {
                Bar::baz();
            }
        }

        Source https://phpmd.org/rules/cleancode.html#staticaccess

        The method getAddressInline uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
        Open

                else {
                    $format_string = $address_format->getFormat() . "\n" . '%country';
                }
        Severity: Minor
        Found in Service/AddressOutputService.php by phpmd

        ElseExpression

        Since: 1.4.0

        An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

        Example

        class Foo
        {
            public function bar($flag)
            {
                if ($flag) {
                    // one branch
                } else {
                    // another branch
                }
            }
        }

        Source https://phpmd.org/rules/cleancode.html#elseexpression

        Avoid using static access to class '\CommerceGuys\Addressing\Locale' in method 'getValuesForDefault'.
        Open

                    $use_local_name = Locale::matchCandidates($address->getLocale(), $subdivision->getLocale());
        Severity: Minor
        Found in Service/AddressOutputService.php by phpmd

        StaticAccess

        Since: 1.4.0

        Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

        Example

        class Foo
        {
            public function bar()
            {
                Bar::baz();
            }
        }

        Source https://phpmd.org/rules/cleancode.html#staticaccess

        The method getAddressDefault uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
        Open

                else {
                    $format_string = $address_format->getFormat() . "\n" . '%country';
                }
        Severity: Minor
        Found in Service/AddressOutputService.php by phpmd

        ElseExpression

        Since: 1.4.0

        An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

        Example

        class Foo
        {
            public function bar($flag)
            {
                if ($flag) {
                    // one branch
                } else {
                    // another branch
                }
            }
        }

        Source https://phpmd.org/rules/cleancode.html#elseexpression

        Severity
        Category
        Status
        Source
        Language