AJenbo/agcms

View on GitHub
application/inc/Services/InvoiceService.php

Summary

Maintainability
F
4 days
Test Coverage
F
52%

Function createFromCart has a Cognitive Complexity of 70 (exceeds 5 allowed). Consider refactoring.
Open

    public function createFromCart(array $cart): Invoice
    {
        $db = app(DbService::class);
        $orm = app(OrmService::class);
        $amount = 0;
Severity: Minor
Found in application/inc/Services/InvoiceService.php - About 1 day 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

File InvoiceService.php has 378 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

namespace App\Services;

use App\Countries;
Severity: Minor
Found in application/inc/Services/InvoiceService.php - About 5 hrs to fix

    Function invoiceBasicUpdate has a Cognitive Complexity of 33 (exceeds 5 allowed). Consider refactoring.
    Open

        public function invoiceBasicUpdate(Invoice $invoice, User $user, InvoiceAction $action, array $updates): void
        {
            $status = $invoice->getStatus();
    
            if (InvoiceStatus::New === $invoice->getStatus()) {
    Severity: Minor
    Found in application/inc/Services/InvoiceService.php - About 4 hrs 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

    Method invoiceBasicUpdate has 91 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function invoiceBasicUpdate(Invoice $invoice, User $user, InvoiceAction $action, array $updates): void
        {
            $status = $invoice->getStatus();
    
            if (InvoiceStatus::New === $invoice->getStatus()) {
    Severity: Major
    Found in application/inc/Services/InvoiceService.php - About 3 hrs to fix

      The class InvoiceService has an overall complexity of 94 which is very high. The configured complexity threshold is 50.
      Open

      class InvoiceService
      {
          /**
           * Create an invoice from the client cart array.
           *

      Method createFromCart has 79 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function createFromCart(array $cart): Invoice
          {
              $db = app(DbService::class);
              $orm = app(OrmService::class);
              $amount = 0;
      Severity: Major
      Found in application/inc/Services/InvoiceService.php - About 3 hrs to fix

        Method cleanAddressData has 50 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function cleanAddressData(array $data): array
            {
                $data = [
                    'name'                 => $data['name'] ?? '',
                    'attn'                 => $data['attn'] ?? '',
        Severity: Minor
        Found in application/inc/Services/InvoiceService.php - About 2 hrs to fix

          Consider simplifying this complex logical expression.
          Open

                  if (!$data['shipping_address2']
                      && ($data['shipping_phone'] === $data['phone1'] || $data['shipping_phone'] === $data['phone2'])
                      && $data['shipping_name'] === $data['name']
                      && $data['shipping_attn'] === $data['attn']
                      && $data['shipping_address'] === $data['address']
          Severity: Critical
          Found in application/inc/Services/InvoiceService.php - About 2 hrs to fix

            Method sendInvoice has 43 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                public function sendInvoice(Invoice $invoice): void
                {
                    if (!$invoice->hasValidEmail()) {
                        throw new InvalidInput(_('Email is not valid.'));
                    }
            Severity: Minor
            Found in application/inc/Services/InvoiceService.php - About 1 hr to fix

              Method addToAddressBook has 33 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  public function addToAddressBook(Invoice $invoice, ?string $clientIp): void
                  {
                      /** @var string[] */
                      $countries = Countries::getOrdered();
                      $conteact = app(OrmService::class)->getOneByQuery(
              Severity: Minor
              Found in application/inc/Services/InvoiceService.php - About 1 hr to fix

                Function cleanAddressData has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
                Open

                    public function cleanAddressData(array $data): array
                    {
                        $data = [
                            'name'                 => $data['name'] ?? '',
                            'attn'                 => $data['attn'] ?? '',
                Severity: Minor
                Found in application/inc/Services/InvoiceService.php - About 55 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

                Function sendInvoice has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                Open

                    public function sendInvoice(Invoice $invoice): void
                    {
                        if (!$invoice->hasValidEmail()) {
                            throw new InvalidInput(_('Email is not valid.'));
                        }
                Severity: Minor
                Found in application/inc/Services/InvoiceService.php - About 35 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

                Function generateExtraNote has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                Open

                    public function generateExtraNote(array $cart): string
                    {
                        $notes = [];
                        switch ($cart['payMethod'] ?? '') {
                            case 'creditcard':
                Severity: Minor
                Found in application/inc/Services/InvoiceService.php - About 35 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

                The method createFromCart() has an NPath complexity of 18435. The configured NPath complexity threshold is 200.
                Open

                    public function createFromCart(array $cart): Invoice
                    {
                        $db = app(DbService::class);
                        $orm = app(OrmService::class);
                        $amount = 0;

                NPathComplexity

                Since: 0.1

                The NPath complexity of a method is the number of acyclic execution paths through that method. A threshold of 200 is generally considered the point where measures should be taken to reduce complexity.

                Example

                class Foo {
                    function bar() {
                        // lots of complicated code
                    }
                }

                Source https://phpmd.org/rules/codesize.html#npathcomplexity

                The method cleanAddressData() has an NPath complexity of 352. The configured NPath complexity threshold is 200.
                Open

                    public function cleanAddressData(array $data): array
                    {
                        $data = [
                            'name'                 => $data['name'] ?? '',
                            'attn'                 => $data['attn'] ?? '',

                NPathComplexity

                Since: 0.1

                The NPath complexity of a method is the number of acyclic execution paths through that method. A threshold of 200 is generally considered the point where measures should be taken to reduce complexity.

                Example

                class Foo {
                    function bar() {
                        // lots of complicated code
                    }
                }

                Source https://phpmd.org/rules/codesize.html#npathcomplexity

                The method invoiceBasicUpdate() has an NPath complexity of 435200. The configured NPath complexity threshold is 200.
                Open

                    public function invoiceBasicUpdate(Invoice $invoice, User $user, InvoiceAction $action, array $updates): void
                    {
                        $status = $invoice->getStatus();
                
                        if (InvoiceStatus::New === $invoice->getStatus()) {

                NPathComplexity

                Since: 0.1

                The NPath complexity of a method is the number of acyclic execution paths through that method. A threshold of 200 is generally considered the point where measures should be taken to reduce complexity.

                Example

                class Foo {
                    function bar() {
                        // lots of complicated code
                    }
                }

                Source https://phpmd.org/rules/codesize.html#npathcomplexity

                The method invoiceBasicUpdate() has 104 lines of code. Current threshold is set to 100. Avoid really long methods.
                Open

                    public function invoiceBasicUpdate(Invoice $invoice, User $user, InvoiceAction $action, array $updates): void
                    {
                        $status = $invoice->getStatus();
                
                        if (InvoiceStatus::New === $invoice->getStatus()) {

                The method createFromCart() has a Cyclomatic Complexity of 28. The configured cyclomatic complexity threshold is 10.
                Open

                    public function createFromCart(array $cart): Invoice
                    {
                        $db = app(DbService::class);
                        $orm = app(OrmService::class);
                        $amount = 0;

                CyclomaticComplexity

                Since: 0.1

                Complexity is determined by the number of decision points in a method plus one for the method entry. The decision points are 'if', 'while', 'for', and 'case labels'. Generally, 1-4 is low complexity, 5-7 indicates moderate complexity, 8-10 is high complexity, and 11+ is very high complexity.

                Example

                // Cyclomatic Complexity = 11
                class Foo {
                1   public function example() {
                2       if ($a == $b) {
                3           if ($a1 == $b1) {
                                fiddle();
                4           } elseif ($a2 == $b2) {
                                fiddle();
                            } else {
                                fiddle();
                            }
                5       } elseif ($c == $d) {
                6           while ($c == $d) {
                                fiddle();
                            }
                7        } elseif ($e == $f) {
                8           for ($n = 0; $n < $h; $n++) {
                                fiddle();
                            }
                        } else {
                            switch ($z) {
                9               case 1:
                                    fiddle();
                                    break;
                10              case 2:
                                    fiddle();
                                    break;
                11              case 3:
                                    fiddle();
                                    break;
                                default:
                                    fiddle();
                                    break;
                            }
                        }
                    }
                }

                Source https://phpmd.org/rules/codesize.html#cyclomaticcomplexity

                The method invoiceBasicUpdate() has a Cyclomatic Complexity of 28. The configured cyclomatic complexity threshold is 10.
                Open

                    public function invoiceBasicUpdate(Invoice $invoice, User $user, InvoiceAction $action, array $updates): void
                    {
                        $status = $invoice->getStatus();
                
                        if (InvoiceStatus::New === $invoice->getStatus()) {

                CyclomaticComplexity

                Since: 0.1

                Complexity is determined by the number of decision points in a method plus one for the method entry. The decision points are 'if', 'while', 'for', and 'case labels'. Generally, 1-4 is low complexity, 5-7 indicates moderate complexity, 8-10 is high complexity, and 11+ is very high complexity.

                Example

                // Cyclomatic Complexity = 11
                class Foo {
                1   public function example() {
                2       if ($a == $b) {
                3           if ($a1 == $b1) {
                                fiddle();
                4           } elseif ($a2 == $b2) {
                                fiddle();
                            } else {
                                fiddle();
                            }
                5       } elseif ($c == $d) {
                6           while ($c == $d) {
                                fiddle();
                            }
                7        } elseif ($e == $f) {
                8           for ($n = 0; $n < $h; $n++) {
                                fiddle();
                            }
                        } else {
                            switch ($z) {
                9               case 1:
                                    fiddle();
                                    break;
                10              case 2:
                                    fiddle();
                                    break;
                11              case 3:
                                    fiddle();
                                    break;
                                default:
                                    fiddle();
                                    break;
                            }
                        }
                    }
                }

                Source https://phpmd.org/rules/codesize.html#cyclomaticcomplexity

                The method cleanAddressData() has a Cyclomatic Complexity of 16. The configured cyclomatic complexity threshold is 10.
                Open

                    public function cleanAddressData(array $data): array
                    {
                        $data = [
                            'name'                 => $data['name'] ?? '',
                            'attn'                 => $data['attn'] ?? '',

                CyclomaticComplexity

                Since: 0.1

                Complexity is determined by the number of decision points in a method plus one for the method entry. The decision points are 'if', 'while', 'for', and 'case labels'. Generally, 1-4 is low complexity, 5-7 indicates moderate complexity, 8-10 is high complexity, and 11+ is very high complexity.

                Example

                // Cyclomatic Complexity = 11
                class Foo {
                1   public function example() {
                2       if ($a == $b) {
                3           if ($a1 == $b1) {
                                fiddle();
                4           } elseif ($a2 == $b2) {
                                fiddle();
                            } else {
                                fiddle();
                            }
                5       } elseif ($c == $d) {
                6           while ($c == $d) {
                                fiddle();
                            }
                7        } elseif ($e == $f) {
                8           for ($n = 0; $n < $h; $n++) {
                                fiddle();
                            }
                        } else {
                            switch ($z) {
                9               case 1:
                                    fiddle();
                                    break;
                10              case 2:
                                    fiddle();
                                    break;
                11              case 3:
                                    fiddle();
                                    break;
                                default:
                                    fiddle();
                                    break;
                            }
                        }
                    }
                }

                Source https://phpmd.org/rules/codesize.html#cyclomaticcomplexity

                Refactor this function to reduce its Cognitive Complexity from 82 to the 15 allowed.
                Open

                    public function createFromCart(array $cart): Invoice

                Cognitive Complexity is a measure of how hard the control flow of a function is to understand. Functions with high Cognitive Complexity will be difficult to maintain.

                See

                Refactor this function to reduce its Cognitive Complexity from 43 to the 15 allowed.
                Open

                    public function invoiceBasicUpdate(Invoice $invoice, User $user, InvoiceAction $action, array $updates): void

                Cognitive Complexity is a measure of how hard the control flow of a function is to understand. Functions with high Cognitive Complexity will be difficult to maintain.

                See

                The class InvoiceService has a coupling between objects value of 19. Consider to reduce the number of dependencies under 13.
                Open

                class InvoiceService
                {
                    /**
                     * Create an invoice from the client cart array.
                     *

                CouplingBetweenObjects

                Since: 1.1.0

                A class with too many dependencies has negative impacts on several quality aspects of a class. This includes quality criteria like stability, maintainability and understandability

                Example

                class Foo {
                    /**
                     * @var \foo\bar\X
                     */
                    private $x = null;
                
                    /**
                     * @var \foo\bar\Y
                     */
                    private $y = null;
                
                    /**
                     * @var \foo\bar\Z
                     */
                    private $z = null;
                
                    public function setFoo(\Foo $foo) {}
                    public function setBar(\Bar $bar) {}
                    public function setBaz(\Baz $baz) {}
                
                    /**
                     * @return \SplObjectStorage
                     * @throws \OutOfRangeException
                     * @throws \InvalidArgumentException
                     * @throws \ErrorException
                     */
                    public function process(\Iterator $it) {}
                
                    // ...
                }

                Source https://phpmd.org/rules/design.html#couplingbetweenobjects

                Avoid using static access to class 'App\Services\ConfigService' in method 'invoiceBasicUpdate'.
                Open

                            $email = ConfigService::getDefaultEmail();

                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 'App\Services\ConfigService' in method 'sendInvoice'.
                Open

                                'phone'      => ConfigService::getString('phone'),

                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 'App\Services\ConfigService' in method 'sendInvoice'.
                Open

                                'address'    => ConfigService::getString('address'),

                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 createFromCart uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                Open

                                } else {
                                    if (!$title) {
                                        $title = $page->getTitle();
                                        if ($page->getSku()) {
                                            if ($title) {

                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 '\App\Countries' in method 'addToAddressBook'.
                Open

                        $countries = Countries::getOrdered();

                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 'App\Services\ConfigService' in method 'sendInvoice'.
                Open

                            $email = ConfigService::getDefaultEmail();

                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 'App\Services\ConfigService' in method 'getPayment'.
                Open

                        $epaymentService = new EpaymentService(ConfigService::getString('pbsid'), ConfigService::getString('pbspwd'));

                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 'App\Services\ConfigService' in method 'sendInvoice'.
                Open

                                'city'       => ConfigService::getString('city'),

                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 'App\Services\ConfigService' in method 'sendInvoice'.
                Open

                        if (!$invoice->getDepartment() && 1 === count(ConfigService::getEmailConfigs())) {

                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 'App\Services\ConfigService' in method 'getPayment'.
                Open

                        $epaymentService = new EpaymentService(ConfigService::getString('pbsid'), ConfigService::getString('pbspwd'));

                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 'App\Services\ConfigService' in method 'getPayment'.
                Open

                        return $epaymentService->getPayment(ConfigService::getString('pbsfix') . $invoice->getId());

                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 'App\Services\ConfigService' in method 'sendInvoice'.
                Open

                            'senderName'       => ConfigService::getString('site_name'),

                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 'App\Services\ConfigService' in method 'invoiceBasicUpdate'.
                Open

                        if (!$invoice->getDepartment() && 1 === count(ConfigService::getEmailConfigs())) {

                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 'App\Services\ConfigService' in method 'sendInvoice'.
                Open

                                'siteName'   => ConfigService::getString('site_name'),

                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 'App\Services\ConfigService' in method 'sendInvoice'.
                Open

                                'postcode'   => ConfigService::getString('postcode'),

                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 'App\Services\ConfigService' in method 'sendInvoice'.
                Open

                        $subject = _('Online payment for ') . ConfigService::getString('site_name');

                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

                Define a constant instead of duplicating this literal "items" 3 times.
                Open

                        if (isset($cart['items']) && is_array($cart['items'])) {

                Duplicated string literals make the process of refactoring error-prone, since you must be sure to update all occurrences.

                On the other hand, constants can be referenced from many places, but only need to be updated in a single place.

                Noncompliant Code Example

                With the default threshold of 3:

                function run() {
                  prepare('action1');                              // Non-Compliant - 'action1' is duplicated 3 times
                  execute('action1');
                  release('action1');
                }
                

                Compliant Solution

                ACTION_1 = 'action1';
                
                function run() {
                  prepare(ACTION_1);
                  execute(ACTION_1);
                  release(ACTION_1);
                }
                

                Exceptions

                To prevent generating some false-positives, literals having less than 5 characters are excluded.

                Define a constant instead of duplicating this literal "address" 7 times.
                Open

                            'address'              => $data['address'] ?? '',

                Duplicated string literals make the process of refactoring error-prone, since you must be sure to update all occurrences.

                On the other hand, constants can be referenced from many places, but only need to be updated in a single place.

                Noncompliant Code Example

                With the default threshold of 3:

                function run() {
                  prepare('action1');                              // Non-Compliant - 'action1' is duplicated 3 times
                  execute('action1');
                  release('action1');
                }
                

                Compliant Solution

                ACTION_1 = 'action1';
                
                function run() {
                  prepare(ACTION_1);
                  execute(ACTION_1);
                  release(ACTION_1);
                }
                

                Exceptions

                To prevent generating some false-positives, literals having less than 5 characters are excluded.

                Define a constant instead of duplicating this literal "shipping_phone" 3 times.
                Open

                            'shipping_phone'       => $data['shippingPhone'] ?? '',

                Duplicated string literals make the process of refactoring error-prone, since you must be sure to update all occurrences.

                On the other hand, constants can be referenced from many places, but only need to be updated in a single place.

                Noncompliant Code Example

                With the default threshold of 3:

                function run() {
                  prepare('action1');                              // Non-Compliant - 'action1' is duplicated 3 times
                  execute('action1');
                  release('action1');
                }
                

                Compliant Solution

                ACTION_1 = 'action1';
                
                function run() {
                  prepare(ACTION_1);
                  execute(ACTION_1);
                  release(ACTION_1);
                }
                

                Exceptions

                To prevent generating some false-positives, literals having less than 5 characters are excluded.

                Define a constant instead of duplicating this literal "department" 3 times.
                Open

                        } elseif (!empty($updates['department']) && is_string($updates['department'])) {

                Duplicated string literals make the process of refactoring error-prone, since you must be sure to update all occurrences.

                On the other hand, constants can be referenced from many places, but only need to be updated in a single place.

                Noncompliant Code Example

                With the default threshold of 3:

                function run() {
                  prepare('action1');                              // Non-Compliant - 'action1' is duplicated 3 times
                  execute('action1');
                  release('action1');
                }
                

                Compliant Solution

                ACTION_1 = 'action1';
                
                function run() {
                  prepare(ACTION_1);
                  execute(ACTION_1);
                  release(ACTION_1);
                }
                

                Exceptions

                To prevent generating some false-positives, literals having less than 5 characters are excluded.

                Add a "case default" clause to this "switch" statement.
                Open

                        switch ($cart['payMethod'] ?? '') {

                The requirement for a final case default clause is defensive programming. The clause should either take appropriate action, or contain a suitable comment as to why no action is taken. Even when the switch covers all current values of an enum, a default case should still be used because there is no guarantee that the enum won't be extended.

                Noncompliant Code Example

                switch ($param) {  //missing default clause
                  case 0:
                    do_something();
                    break;
                  case 1:
                    do_something_else();
                    break;
                }
                
                switch ($param) {
                  default: // default clause should be the last one
                    error();
                    break;
                  case 0:
                    do_something();
                    break;
                  case 1:
                    do_something_else();
                    break;
                }
                

                Compliant Solution

                switch ($param) {
                  case 0:
                    do_something();
                    break;
                  case 1:
                    do_something_else();
                    break;
                  default:
                    error();
                    break;
                }
                

                See

                • MISRA C:2004, 15.0 - The MISRA C switch syntax shall be used.
                • MISRA C:2004, 15.3 - The final clause of a switch statement shall be the default clause
                • MISRA C++:2008, 6-4-3 - A switch statement shall be a well-formed switch statement.
                • MISRA C++:2008, 6-4-6 - The final clause of a switch statement shall be the default-clause
                • MISRA C:2012, 16.1 - All switch statements shall be well-formed
                • MISRA C:2012, 16.4 - Every switch statement shall have a default label
                • MISRA C:2012, 16.5 - A default label shall appear as either the first or the last switch label of a switch statement
                • MITRE, CWE-478 - Missing Default Case in Switch Statement
                • CERT, MSC01-C. - Strive for logical completeness
                • CERT, MSC01-CPP. - Strive for logical completeness

                Define a constant instead of duplicating this literal "country" 5 times.
                Open

                            'country'              => $data['country'] ?? 'DK',

                Duplicated string literals make the process of refactoring error-prone, since you must be sure to update all occurrences.

                On the other hand, constants can be referenced from many places, but only need to be updated in a single place.

                Noncompliant Code Example

                With the default threshold of 3:

                function run() {
                  prepare('action1');                              // Non-Compliant - 'action1' is duplicated 3 times
                  execute('action1');
                  release('action1');
                }
                

                Compliant Solution

                ACTION_1 = 'action1';
                
                function run() {
                  prepare(ACTION_1);
                  execute(ACTION_1);
                  release(ACTION_1);
                }
                

                Exceptions

                To prevent generating some false-positives, literals having less than 5 characters are excluded.

                Define a constant instead of duplicating this literal "phone1" 7 times.
                Open

                            'phone1'               => $data['phone1'] ?? '',

                Duplicated string literals make the process of refactoring error-prone, since you must be sure to update all occurrences.

                On the other hand, constants can be referenced from many places, but only need to be updated in a single place.

                Noncompliant Code Example

                With the default threshold of 3:

                function run() {
                  prepare('action1');                              // Non-Compliant - 'action1' is duplicated 3 times
                  execute('action1');
                  release('action1');
                }
                

                Compliant Solution

                ACTION_1 = 'action1';
                
                function run() {
                  prepare(ACTION_1);
                  execute(ACTION_1);
                  release(ACTION_1);
                }
                

                Exceptions

                To prevent generating some false-positives, literals having less than 5 characters are excluded.

                Define a constant instead of duplicating this literal "site_name" 3 times.
                Open

                        $subject = _('Online payment for ') . ConfigService::getString('site_name');

                Duplicated string literals make the process of refactoring error-prone, since you must be sure to update all occurrences.

                On the other hand, constants can be referenced from many places, but only need to be updated in a single place.

                Noncompliant Code Example

                With the default threshold of 3:

                function run() {
                  prepare('action1');                              // Non-Compliant - 'action1' is duplicated 3 times
                  execute('action1');
                  release('action1');
                }
                

                Compliant Solution

                ACTION_1 = 'action1';
                
                function run() {
                  prepare(ACTION_1);
                  execute(ACTION_1);
                  release(ACTION_1);
                }
                

                Exceptions

                To prevent generating some false-positives, literals having less than 5 characters are excluded.

                Define a constant instead of duplicating this literal "shipping_postcode" 3 times.
                Open

                            'shipping_postcode'    => $data['shippingPostcode'] ?? '',

                Duplicated string literals make the process of refactoring error-prone, since you must be sure to update all occurrences.

                On the other hand, constants can be referenced from many places, but only need to be updated in a single place.

                Noncompliant Code Example

                With the default threshold of 3:

                function run() {
                  prepare('action1');                              // Non-Compliant - 'action1' is duplicated 3 times
                  execute('action1');
                  release('action1');
                }
                

                Compliant Solution

                ACTION_1 = 'action1';
                
                function run() {
                  prepare(ACTION_1);
                  execute(ACTION_1);
                  release(ACTION_1);
                }
                

                Exceptions

                To prevent generating some false-positives, literals having less than 5 characters are excluded.

                Define a constant instead of duplicating this literal "shipping_name" 3 times.
                Open

                            'shipping_name'        => $data['shippingName'] ?? '',

                Duplicated string literals make the process of refactoring error-prone, since you must be sure to update all occurrences.

                On the other hand, constants can be referenced from many places, but only need to be updated in a single place.

                Noncompliant Code Example

                With the default threshold of 3:

                function run() {
                  prepare('action1');                              // Non-Compliant - 'action1' is duplicated 3 times
                  execute('action1');
                  release('action1');
                }
                

                Compliant Solution

                ACTION_1 = 'action1';
                
                function run() {
                  prepare(ACTION_1);
                  execute(ACTION_1);
                  release(ACTION_1);
                }
                

                Exceptions

                To prevent generating some false-positives, literals having less than 5 characters are excluded.

                Define a constant instead of duplicating this literal "phone2" 6 times.
                Open

                            'phone2'               => $data['phone2'] ?? '',

                Duplicated string literals make the process of refactoring error-prone, since you must be sure to update all occurrences.

                On the other hand, constants can be referenced from many places, but only need to be updated in a single place.

                Noncompliant Code Example

                With the default threshold of 3:

                function run() {
                  prepare('action1');                              // Non-Compliant - 'action1' is duplicated 3 times
                  execute('action1');
                  release('action1');
                }
                

                Compliant Solution

                ACTION_1 = 'action1';
                
                function run() {
                  prepare(ACTION_1);
                  execute(ACTION_1);
                  release(ACTION_1);
                }
                

                Exceptions

                To prevent generating some false-positives, literals having less than 5 characters are excluded.

                Define a constant instead of duplicating this literal "postcode" 8 times.
                Open

                            'postcode'             => $data['postcode'] ?? '',

                Duplicated string literals make the process of refactoring error-prone, since you must be sure to update all occurrences.

                On the other hand, constants can be referenced from many places, but only need to be updated in a single place.

                Noncompliant Code Example

                With the default threshold of 3:

                function run() {
                  prepare('action1');                              // Non-Compliant - 'action1' is duplicated 3 times
                  execute('action1');
                  release('action1');
                }
                

                Compliant Solution

                ACTION_1 = 'action1';
                
                function run() {
                  prepare(ACTION_1);
                  execute(ACTION_1);
                  release(ACTION_1);
                }
                

                Exceptions

                To prevent generating some false-positives, literals having less than 5 characters are excluded.

                Define a constant instead of duplicating this literal "shipping_postbox" 4 times.
                Open

                            'shipping_postbox'     => $data['shippingPostbox'] ?? '',

                Duplicated string literals make the process of refactoring error-prone, since you must be sure to update all occurrences.

                On the other hand, constants can be referenced from many places, but only need to be updated in a single place.

                Noncompliant Code Example

                With the default threshold of 3:

                function run() {
                  prepare('action1');                              // Non-Compliant - 'action1' is duplicated 3 times
                  execute('action1');
                  release('action1');
                }
                

                Compliant Solution

                ACTION_1 = 'action1';
                
                function run() {
                  prepare(ACTION_1);
                  execute(ACTION_1);
                  release(ACTION_1);
                }
                

                Exceptions

                To prevent generating some false-positives, literals having less than 5 characters are excluded.

                Define a constant instead of duplicating this literal "postbox" 6 times.
                Open

                            'postbox'              => $data['postbox'] ?? '',

                Duplicated string literals make the process of refactoring error-prone, since you must be sure to update all occurrences.

                On the other hand, constants can be referenced from many places, but only need to be updated in a single place.

                Noncompliant Code Example

                With the default threshold of 3:

                function run() {
                  prepare('action1');                              // Non-Compliant - 'action1' is duplicated 3 times
                  execute('action1');
                  release('action1');
                }
                

                Compliant Solution

                ACTION_1 = 'action1';
                
                function run() {
                  prepare(ACTION_1);
                  execute(ACTION_1);
                  release(ACTION_1);
                }
                

                Exceptions

                To prevent generating some false-positives, literals having less than 5 characters are excluded.

                Define a constant instead of duplicating this literal "hasShippingAddress" 3 times.
                Open

                            'has_shipping_address' => (bool)($data['hasShippingAddress'] ?? false),

                Duplicated string literals make the process of refactoring error-prone, since you must be sure to update all occurrences.

                On the other hand, constants can be referenced from many places, but only need to be updated in a single place.

                Noncompliant Code Example

                With the default threshold of 3:

                function run() {
                  prepare('action1');                              // Non-Compliant - 'action1' is duplicated 3 times
                  execute('action1');
                  release('action1');
                }
                

                Compliant Solution

                ACTION_1 = 'action1';
                
                function run() {
                  prepare(ACTION_1);
                  execute(ACTION_1);
                  release(ACTION_1);
                }
                

                Exceptions

                To prevent generating some false-positives, literals having less than 5 characters are excluded.

                Define a constant instead of duplicating this literal "email" 4 times.
                Open

                            'email'                => $data['email'] ?? '',

                Duplicated string literals make the process of refactoring error-prone, since you must be sure to update all occurrences.

                On the other hand, constants can be referenced from many places, but only need to be updated in a single place.

                Noncompliant Code Example

                With the default threshold of 3:

                function run() {
                  prepare('action1');                              // Non-Compliant - 'action1' is duplicated 3 times
                  execute('action1');
                  release('action1');
                }
                

                Compliant Solution

                ACTION_1 = 'action1';
                
                function run() {
                  prepare(ACTION_1);
                  execute(ACTION_1);
                  release(ACTION_1);
                }
                

                Exceptions

                To prevent generating some false-positives, literals having less than 5 characters are excluded.

                Add a "case default" clause to this "switch" statement.
                Open

                        switch ($cart['deleveryMethod'] ?? '') {

                The requirement for a final case default clause is defensive programming. The clause should either take appropriate action, or contain a suitable comment as to why no action is taken. Even when the switch covers all current values of an enum, a default case should still be used because there is no guarantee that the enum won't be extended.

                Noncompliant Code Example

                switch ($param) {  //missing default clause
                  case 0:
                    do_something();
                    break;
                  case 1:
                    do_something_else();
                    break;
                }
                
                switch ($param) {
                  default: // default clause should be the last one
                    error();
                    break;
                  case 0:
                    do_something();
                    break;
                  case 1:
                    do_something_else();
                    break;
                }
                

                Compliant Solution

                switch ($param) {
                  case 0:
                    do_something();
                    break;
                  case 1:
                    do_something_else();
                    break;
                  default:
                    error();
                    break;
                }
                

                See

                • MISRA C:2004, 15.0 - The MISRA C switch syntax shall be used.
                • MISRA C:2004, 15.3 - The final clause of a switch statement shall be the default clause
                • MISRA C++:2008, 6-4-3 - A switch statement shall be a well-formed switch statement.
                • MISRA C++:2008, 6-4-6 - The final clause of a switch statement shall be the default-clause
                • MISRA C:2012, 16.1 - All switch statements shall be well-formed
                • MISRA C:2012, 16.4 - Every switch statement shall have a default label
                • MISRA C:2012, 16.5 - A default label shall appear as either the first or the last switch label of a switch statement
                • MITRE, CWE-478 - Missing Default Case in Switch Statement
                • CERT, MSC01-C. - Strive for logical completeness
                • CERT, MSC01-CPP. - Strive for logical completeness

                Define a constant instead of duplicating this literal "shipping_attn" 4 times.
                Open

                            'shipping_attn'        => $data['shippingAttn'] ?? '',

                Duplicated string literals make the process of refactoring error-prone, since you must be sure to update all occurrences.

                On the other hand, constants can be referenced from many places, but only need to be updated in a single place.

                Noncompliant Code Example

                With the default threshold of 3:

                function run() {
                  prepare('action1');                              // Non-Compliant - 'action1' is duplicated 3 times
                  execute('action1');
                  release('action1');
                }
                

                Compliant Solution

                ACTION_1 = 'action1';
                
                function run() {
                  prepare(ACTION_1);
                  execute(ACTION_1);
                  release(ACTION_1);
                }
                

                Exceptions

                To prevent generating some false-positives, literals having less than 5 characters are excluded.

                Avoid variables with short names like $db. Configured minimum length is 3.
                Open

                        $db = app(DbService::class);

                ShortVariable

                Since: 0.2

                Detects when a field, local, or parameter has a very short name.

                Example

                class Something {
                    private $q = 15; // VIOLATION - Field
                    public static function main( array $as ) { // VIOLATION - Formal
                        $r = 20 + $this->q; // VIOLATION - Local
                        for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                            $r += $this->q;
                        }
                    }
                }

                Source https://phpmd.org/rules/naming.html#shortvariable

                There are no issues that match your filters.

                Category
                Status