core/modules/shop/ShopTransactionController.php

Summary

Maintainability
F
3 days
Test Coverage

File ShopTransactionController.php has 455 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

require_once 'ShopController.php';

class ShopTransactionController extends ShopController
Severity: Minor
Found in core/modules/shop/ShopTransactionController.php - About 6 hrs to fix

    Method setupJson has 129 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function setupJson($source = false)
        {
            $request = Ajde::app()->getRequest();
    
            // Init vars
    Severity: Major
    Found in core/modules/shop/ShopTransactionController.php - About 5 hrs to fix

      Function setupJson has a Cognitive Complexity of 28 (exceeds 5 allowed). Consider refactoring.
      Open

          public function setupJson($source = false)
          {
              $request = Ajde::app()->getRequest();
      
              // Init vars
      Severity: Minor
      Found in core/modules/shop/ShopTransactionController.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

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

      class ShopTransactionController extends ShopController
      {
          public function view()
          {
              $transaction = new TransactionModel();

      The class ShopTransactionController has 18 public methods. Consider refactoring ShopTransactionController to keep number of public methods under 10.
      Open

      class ShopTransactionController extends ShopController
      {
          public function view()
          {
              $transaction = new TransactionModel();

      TooManyPublicMethods

      Since: 0.1

      A class with too many public methods is probably a good suspect for refactoring, in order to reduce its complexity and find a way to have more fine grained objects.

      By default it ignores methods starting with 'get' or 'set'.

      Example

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

      Method paymentJson has 47 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function paymentJson()
          {
              $request = Ajde::app()->getRequest();
              $provider = $request->getPostParam('provider', false);
      
      
      Severity: Minor
      Found in core/modules/shop/ShopTransactionController.php - About 1 hr to fix

        Method setup has 44 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function setup()
            {
                // Get existing transaction / user details
                $transaction = new TransactionModel();
                $session = new Ajde_Session('AC.Shop');
        Severity: Minor
        Found in core/modules/shop/ShopTransactionController.php - About 1 hr to fix

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

              public function paymentJson()
              {
                  $request = Ajde::app()->getRequest();
                  $provider = $request->getPostParam('provider', false);
          
          
          Severity: Minor
          Found in core/modules/shop/ShopTransactionController.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 shipment has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
          Open

              public function shipment()
              {
                  $transaction = new TransactionModel();
          
                  $session = new Ajde_Session('AC.Shop');
          Severity: Minor
          Found in core/modules/shop/ShopTransactionController.php - About 45 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

          Consider simplifying this complex logical expression.
          Open

                      if (
                          empty($name) ||
                          empty($email) ||
                          empty($address) ||
                          empty($zipcode) ||
          Severity: Major
          Found in core/modules/shop/ShopTransactionController.php - About 40 mins to fix

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

                public function view()
                {
                    $transaction = new TransactionModel();
            
                    Ajde::app()->getDocument()->setTitle(trans('Your order'));
            Severity: Minor
            Found in core/modules/shop/ShopTransactionController.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

            Avoid too many return statements within this method.
            Open

                            return [
                                'success' => false,
                                'message' => trans('No items added to current transaction'),
                            ];
            Severity: Major
            Found in core/modules/shop/ShopTransactionController.php - About 30 mins to fix

              Avoid too many return statements within this method.
              Open

                      return [
                          'success' => false,
                          'message' => 'Could not contact the payment provider, please try again',
                      ];
              Severity: Major
              Found in core/modules/shop/ShopTransactionController.php - About 30 mins to fix

                Avoid too many return statements within this method.
                Open

                            return [
                                'success'  => true,
                                'redirect' => $redirectUrl,
                            ];
                Severity: Major
                Found in core/modules/shop/ShopTransactionController.php - About 30 mins to fix

                  Avoid too many return statements within this method.
                  Open

                                  return [
                                      'success' => true,
                                  ];
                  Severity: Major
                  Found in core/modules/shop/ShopTransactionController.php - About 30 mins to fix

                    Avoid too many return statements within this method.
                    Open

                                return [
                                    'success' => true,
                                ];
                    Severity: Major
                    Found in core/modules/shop/ShopTransactionController.php - About 30 mins to fix

                      Avoid too many return statements within this method.
                      Open

                                  return [
                                      'success' => false,
                                      'message' => trans('Something went wrong'),
                                  ];
                      Severity: Major
                      Found in core/modules/shop/ShopTransactionController.php - About 30 mins to fix

                        Avoid too many return statements within this method.
                        Open

                                return [
                                    'success' => false,
                                    'message' => trans('Something went wrong'),
                                ];
                        Severity: Major
                        Found in core/modules/shop/ShopTransactionController.php - About 30 mins to fix

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

                              public function callback()
                              {
                                  $providerName = $this->getId();
                                  $provider = Ajde_Shop_Transaction_Provider::getProvider($providerName);
                                  $status = $provider->updatePayment();
                          Severity: Minor
                          Found in core/modules/shop/ShopTransactionController.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

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

                              public function setupJson($source = false)
                              {
                                  $request = Ajde::app()->getRequest();
                          
                                  // Init vars

                          The method setupJson() has an NPath complexity of 28188. The configured NPath complexity threshold is 200.
                          Open

                              public function setupJson($source = false)
                              {
                                  $request = Ajde::app()->getRequest();
                          
                                  // Init vars

                          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 setupJson() has a Cyclomatic Complexity of 23. The configured cyclomatic complexity threshold is 10.
                          Open

                              public function setupJson($source = false)
                              {
                                  $request = Ajde::app()->getRequest();
                          
                                  // Init vars

                          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 class ShopTransactionController has a coupling between objects value of 18. Consider to reduce the number of dependencies under 13.
                          Open

                          class ShopTransactionController extends ShopController
                          {
                              public function view()
                              {
                                  $transaction = new TransactionModel();

                          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

                          Missing class import via use statement (line '462', column '28').
                          Open

                                  $transaction = new TransactionModel();

                          MissingImport

                          Since: 2.7.0

                          Importing all external classes in a file through use statements makes them clearly visible.

                          Example

                          function make() {
                              return new \stdClass();
                          }

                          Source http://phpmd.org/rules/cleancode.html#MissingImport

                          Missing class import via use statement (line '20', column '28').
                          Open

                                      $session = new Ajde_Session('AC.Shop');

                          MissingImport

                          Since: 2.7.0

                          Importing all external classes in a file through use statements makes them clearly visible.

                          Example

                          function make() {
                              return new \stdClass();
                          }

                          Source http://phpmd.org/rules/cleancode.html#MissingImport

                          Missing class import via use statement (line '216', column '24').
                          Open

                                  $session = new Ajde_Session('AC.Shop');

                          MissingImport

                          Since: 2.7.0

                          Importing all external classes in a file through use statements makes them clearly visible.

                          Example

                          function make() {
                              return new \stdClass();
                          }

                          Source http://phpmd.org/rules/cleancode.html#MissingImport

                          Missing class import via use statement (line '306', column '21').
                          Open

                                  $cart = new CartModel();

                          MissingImport

                          Since: 2.7.0

                          Importing all external classes in a file through use statements makes them clearly visible.

                          Example

                          function make() {
                              return new \stdClass();
                          }

                          Source http://phpmd.org/rules/cleancode.html#MissingImport

                          Missing class import via use statement (line '503', column '24').
                          Open

                                  $session = new Ajde_Session('AC.Shop');

                          MissingImport

                          Since: 2.7.0

                          Importing all external classes in a file through use statements makes them clearly visible.

                          Example

                          function make() {
                              return new \stdClass();
                          }

                          Source http://phpmd.org/rules/cleancode.html#MissingImport

                          Missing class import via use statement (line '120', column '24').
                          Open

                                  $session = new Ajde_Session('AC.Shop');

                          MissingImport

                          Since: 2.7.0

                          Importing all external classes in a file through use statements makes them clearly visible.

                          Example

                          function make() {
                              return new \stdClass();
                          }

                          Source http://phpmd.org/rules/cleancode.html#MissingImport

                          Missing class import via use statement (line '215', column '28').
                          Open

                                  $transaction = new TransactionModel();

                          MissingImport

                          Since: 2.7.0

                          Importing all external classes in a file through use statements makes them clearly visible.

                          Example

                          function make() {
                              return new \stdClass();
                          }

                          Source http://phpmd.org/rules/cleancode.html#MissingImport

                          Missing class import via use statement (line '33', column '28').
                          Open

                                  $transaction = new TransactionModel();

                          MissingImport

                          Since: 2.7.0

                          Importing all external classes in a file through use statements makes them clearly visible.

                          Example

                          function make() {
                              return new \stdClass();
                          }

                          Source http://phpmd.org/rules/cleancode.html#MissingImport

                          Missing class import via use statement (line '359', column '24').
                          Open

                                  $session = new Ajde_Session('AC.Shop');

                          MissingImport

                          Since: 2.7.0

                          Importing all external classes in a file through use statements makes them clearly visible.

                          Example

                          function make() {
                              return new \stdClass();
                          }

                          Source http://phpmd.org/rules/cleancode.html#MissingImport

                          Missing class import via use statement (line '374', column '24').
                          Open

                                  $session = new Ajde_Session('AC.Shop');

                          MissingImport

                          Since: 2.7.0

                          Importing all external classes in a file through use statements makes them clearly visible.

                          Example

                          function make() {
                              return new \stdClass();
                          }

                          Source http://phpmd.org/rules/cleancode.html#MissingImport

                          Missing class import via use statement (line '522', column '23').
                          Open

                                  $mailer = new Ajde_Mailer();

                          MissingImport

                          Since: 2.7.0

                          Importing all external classes in a file through use statements makes them clearly visible.

                          Example

                          function make() {
                              return new \stdClass();
                          }

                          Source http://phpmd.org/rules/cleancode.html#MissingImport

                          Missing class import via use statement (line '62', column '24').
                          Open

                                  $session = new Ajde_Session('AC.Shop');

                          MissingImport

                          Since: 2.7.0

                          Importing all external classes in a file through use statements makes them clearly visible.

                          Example

                          function make() {
                              return new \stdClass();
                          }

                          Source http://phpmd.org/rules/cleancode.html#MissingImport

                          Missing class import via use statement (line '344', column '28').
                          Open

                                  $transaction = new TransactionModel();

                          MissingImport

                          Since: 2.7.0

                          Importing all external classes in a file through use statements makes them clearly visible.

                          Example

                          function make() {
                              return new \stdClass();
                          }

                          Source http://phpmd.org/rules/cleancode.html#MissingImport

                          Missing class import via use statement (line '261', column '32').
                          Open

                                          $session = new Ajde_Session('AC.Shop');

                          MissingImport

                          Since: 2.7.0

                          Importing all external classes in a file through use statements makes them clearly visible.

                          Example

                          function make() {
                              return new \stdClass();
                          }

                          Source http://phpmd.org/rules/cleancode.html#MissingImport

                          Missing class import via use statement (line '61', column '28').
                          Open

                                  $transaction = new TransactionModel();

                          MissingImport

                          Since: 2.7.0

                          Importing all external classes in a file through use statements makes them clearly visible.

                          Example

                          function make() {
                              return new \stdClass();
                          }

                          Source http://phpmd.org/rules/cleancode.html#MissingImport

                          Missing class import via use statement (line '457', column '21').
                          Open

                                  $cart = new CartModel();

                          MissingImport

                          Since: 2.7.0

                          Importing all external classes in a file through use statements makes them clearly visible.

                          Example

                          function make() {
                              return new \stdClass();
                          }

                          Source http://phpmd.org/rules/cleancode.html#MissingImport

                          Missing class import via use statement (line '513', column '23').
                          Open

                                  $mailer = new Ajde_Mailer();

                          MissingImport

                          Since: 2.7.0

                          Importing all external classes in a file through use statements makes them clearly visible.

                          Example

                          function make() {
                              return new \stdClass();
                          }

                          Source http://phpmd.org/rules/cleancode.html#MissingImport

                          Missing class import via use statement (line '118', column '28').
                          Open

                                  $transaction = new TransactionModel();

                          MissingImport

                          Since: 2.7.0

                          Importing all external classes in a file through use statements makes them clearly visible.

                          Example

                          function make() {
                              return new \stdClass();
                          }

                          Source http://phpmd.org/rules/cleancode.html#MissingImport

                          The method setupJson has a boolean flag argument $source, which is a certain sign of a Single Responsibility Principle violation.
                          Open

                              public function setupJson($source = false)

                          BooleanArgumentFlag

                          Since: 1.4.0

                          A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

                          Example

                          class Foo {
                              public function bar($flag = true) {
                              }
                          }

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

                          Missing class import via use statement (line '251', column '25').
                          Open

                                  $shipping = new ShippingModel($transaction);

                          MissingImport

                          Since: 2.7.0

                          Importing all external classes in a file through use statements makes them clearly visible.

                          Example

                          function make() {
                              return new \stdClass();
                          }

                          Source http://phpmd.org/rules/cleancode.html#MissingImport

                          Missing class import via use statement (line '330', column '28').
                          Open

                                  $transaction = new TransactionModel();

                          MissingImport

                          Since: 2.7.0

                          Importing all external classes in a file through use statements makes them clearly visible.

                          Example

                          function make() {
                              return new \stdClass();
                          }

                          Source http://phpmd.org/rules/cleancode.html#MissingImport

                          Missing class import via use statement (line '357', column '28').
                          Open

                                  $transaction = new TransactionModel();

                          MissingImport

                          Since: 2.7.0

                          Importing all external classes in a file through use statements makes them clearly visible.

                          Example

                          function make() {
                              return new \stdClass();
                          }

                          Source http://phpmd.org/rules/cleancode.html#MissingImport

                          Missing class import via use statement (line '463', column '24').
                          Open

                                  $session = new Ajde_Session('AC.Shop');

                          MissingImport

                          Since: 2.7.0

                          Importing all external classes in a file through use statements makes them clearly visible.

                          Example

                          function make() {
                              return new \stdClass();
                          }

                          Source http://phpmd.org/rules/cleancode.html#MissingImport

                          Missing class import via use statement (line '373', column '28').
                          Open

                                  $transaction = new TransactionModel();

                          MissingImport

                          Since: 2.7.0

                          Importing all external classes in a file through use statements makes them clearly visible.

                          Example

                          function make() {
                              return new \stdClass();
                          }

                          Source http://phpmd.org/rules/cleancode.html#MissingImport

                          Missing class import via use statement (line '540', column '19').
                          Open

                                  throw new Ajde_Core_Exception_Deprecated();

                          MissingImport

                          Since: 2.7.0

                          Importing all external classes in a file through use statements makes them clearly visible.

                          Example

                          function make() {
                              return new \stdClass();
                          }

                          Source http://phpmd.org/rules/cleancode.html#MissingImport

                          Missing class import via use statement (line '542', column '23').
                          Open

                                  $mailer = new Ajde_Mailer();

                          MissingImport

                          Since: 2.7.0

                          Importing all external classes in a file through use statements makes them clearly visible.

                          Example

                          function make() {
                              return new \stdClass();
                          }

                          Source http://phpmd.org/rules/cleancode.html#MissingImport

                          Missing class import via use statement (line '126', column '29').
                          Open

                                      $shipment = new ShippingModel($transaction);

                          MissingImport

                          Since: 2.7.0

                          Importing all external classes in a file through use statements makes them clearly visible.

                          Example

                          function make() {
                              return new \stdClass();
                          }

                          Source http://phpmd.org/rules/cleancode.html#MissingImport

                          Missing class import via use statement (line '408', column '24').
                          Open

                                  $session = new Ajde_Session('AC.Shop');

                          MissingImport

                          Since: 2.7.0

                          Importing all external classes in a file through use statements makes them clearly visible.

                          Example

                          function make() {
                              return new \stdClass();
                          }

                          Source http://phpmd.org/rules/cleancode.html#MissingImport

                          Missing class import via use statement (line '9', column '28').
                          Open

                                  $transaction = new TransactionModel();

                          MissingImport

                          Since: 2.7.0

                          Importing all external classes in a file through use statements makes them clearly visible.

                          Example

                          function make() {
                              return new \stdClass();
                          }

                          Source http://phpmd.org/rules/cleancode.html#MissingImport

                          Missing class import via use statement (line '331', column '24').
                          Open

                                  $session = new Ajde_Session('AC.Shop');

                          MissingImport

                          Since: 2.7.0

                          Importing all external classes in a file through use statements makes them clearly visible.

                          Example

                          function make() {
                              return new \stdClass();
                          }

                          Source http://phpmd.org/rules/cleancode.html#MissingImport

                          Missing class import via use statement (line '345', column '24').
                          Open

                                  $session = new Ajde_Session('AC.Shop');

                          MissingImport

                          Since: 2.7.0

                          Importing all external classes in a file through use statements makes them clearly visible.

                          Example

                          function make() {
                              return new \stdClass();
                          }

                          Source http://phpmd.org/rules/cleancode.html#MissingImport

                          Missing class import via use statement (line '407', column '28').
                          Open

                                  $transaction = new TransactionModel();

                          MissingImport

                          Since: 2.7.0

                          Importing all external classes in a file through use statements makes them clearly visible.

                          Example

                          function make() {
                              return new \stdClass();
                          }

                          Source http://phpmd.org/rules/cleancode.html#MissingImport

                          Avoid using static access to class 'Ajde_Session_Flash' in method 'cancel'.
                          Open

                                  Ajde_Session_Flash::alert(trans('Your order has been cancelled', 'shop'));

                          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 assigning values to variables in if clauses and the like (line '237', column '13').
                          Open

                              public function setupJson($source = false)
                              {
                                  $request = Ajde::app()->getRequest();
                          
                                  // Init vars

                          IfStatementAssignment

                          Since: 2.7.0

                          Assignments in if clauses and the like are considered a code smell. Assignments in PHP return the right operand as their result. In many cases, this is an expected behavior, but can lead to many difficult to spot bugs, especially when the right operand could result in zero, null or an empty string and the like.

                          Example

                          class Foo
                          {
                              public function bar($flag)
                              {
                                  if ($foo = 'bar') { // possible typo
                                      // ...
                                  }
                                  if ($baz = 0) { // always false
                                      // ...
                                  }
                              }
                          }

                          Source http://phpmd.org/rules/cleancode.html#ifstatementassignment

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

                                  } else {
                                      if ($source instanceof Ajde_User) {
                                          // Read user
                                          $name = $source->fullname;
                                          $email = $source->email;

                          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

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

                                  } else {
                                      $shipment = false;
                                      $method = false;
                                      $transaction = false;
                                  }

                          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 'Ajde_Shop_Transaction_Provider' in method 'callback'.
                          Open

                                  $provider = Ajde_Shop_Transaction_Provider::getProvider($providerName);

                          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 'Ajde_Session_Flash' in method 'update'.
                          Open

                                  Ajde_Session_Flash::alert(trans('Your order has been updated', 'shop'));

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

                                  } else {
                                      $transaction = $status['transaction'];
                                      if (isset($transaction)) {
                                          $this->mailUpdateAdmin($transaction, 'Order refused');
                                      }

                          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

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

                                  } else {
                                      // Insert new transaction
                                      $method = 'insert';
                                  }

                          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

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

                                  } else {
                                      return [
                                          'success' => false,
                                          'message' => trans('No current order found'),
                                      ];

                          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

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

                                  } else {
                                      // Get existing transaction / user details
                                      $session = new Ajde_Session('AC.Shop');
                                      if ($session->has('currentTransaction') && $transaction->loadByPK($session->get('currentTransaction'))) {
                                          $this->getView()->assign('source', 'session');

                          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

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

                                  } else {
                                      $transaction->shipment_description = '';
                                      $transaction->shipment_itemsqty = 0;
                                      $transaction->shipment_itemsvatamount = 0;
                                      $transaction->shipment_itemstotal = 0;

                          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 'UserModel' in method 'setup'.
                          Open

                                  $user = UserModel::getLoggedIn();

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

                                  } else {
                                      // Insert intermediate transaction to save cart and allow user to
                                      // see shipping options when country is choosen
                                      $this->setupJson(true);
                          
                          

                          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 'Ajde_Log' in method 'mailUserDeprecated'.
                          Open

                                      Ajde_Log::log('Mail to '.$transaction->email.' failed');

                          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 'Ajde_Component_String' in method 'setupJson'.
                          Open

                                      if (Ajde_Component_String::validEmail($email) === false) {

                          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

                          There are no issues that match your filters.

                          Category
                          Status