RebelCode/rcmod-wp-bookings-cqrs

View on GitHub

Showing 63 of 63 total issues

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

        $b = $this->exprBuilder;
Severity: Minor
Found in src/ResourcesEntityManager.php by phpmd

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

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

        $b = $this->exprBuilder;
Severity: Minor
Found in src/BookingsEntityManager.php by phpmd

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

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

    protected function _createIdExpression($id)
Severity: Minor
Found in src/BaseCqrsEntityManager.php by phpmd

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

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

    public function set($id, $entity)
Severity: Minor
Found in src/BaseCqrsEntityManager.php by phpmd

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

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

    protected function _createIdExpression($id)
Severity: Minor
Found in src/BookingsEntityManager.php by phpmd

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

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

        SelectCapableInterface $selectRm,
        InsertCapableInterface $insertRm,
        UpdateCapableInterface $updateRm,
        DeleteCapableInterface $deleteRm,
        FactoryInterface $orderFactory,
Severity: Minor
Found in src/BaseCqrsEntityManager.php - About 45 mins to fix

    Similar blocks of code found in 4 locations. Consider refactoring.
    Open

                    'booking_resources_select_rm'            => function (ContainerInterface $c) {
                        return new WpdbSelectResourceModel(
                            $c->get('wpdb'),
                            $c->get('sql_expression_template'),
                            $c->get('map_factory'),
    Severity: Major
    Found in src/Module/WpBookingsCqrsModule.php and 3 other locations - About 45 mins to fix
    src/Module/WpBookingsCqrsModule.php on lines 235..244
    src/Module/WpBookingsCqrsModule.php on lines 385..394
    src/Module/WpBookingsCqrsModule.php on lines 640..649

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 95.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 4 locations. Consider refactoring.
    Open

                    'transition_logs_select_rm' => function (ContainerInterface $c) {
                        return new WpdbSelectResourceModel(
                            $c->get('wpdb'),
                            $c->get('sql_expression_template'),
                            $c->get('map_factory'),
    Severity: Major
    Found in src/Module/WpBookingsCqrsModule.php and 3 other locations - About 45 mins to fix
    src/Module/WpBookingsCqrsModule.php on lines 235..244
    src/Module/WpBookingsCqrsModule.php on lines 297..306
    src/Module/WpBookingsCqrsModule.php on lines 640..649

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 95.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 4 locations. Consider refactoring.
    Open

                    'session_rules_select_rm'            => function (ContainerInterface $c) {
                        return new WpdbSelectResourceModel(
                            $c->get('wpdb'),
                            $c->get('sql_expression_template'),
                            $c->get('map_factory'),
    Severity: Major
    Found in src/Module/WpBookingsCqrsModule.php and 3 other locations - About 45 mins to fix
    src/Module/WpBookingsCqrsModule.php on lines 235..244
    src/Module/WpBookingsCqrsModule.php on lines 297..306
    src/Module/WpBookingsCqrsModule.php on lines 385..394

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 95.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 4 locations. Consider refactoring.
    Open

                    'resources_select_rm'            => function (ContainerInterface $c) {
                        return new WpdbSelectResourceModel(
                            $c->get('wpdb'),
                            $c->get('sql_expression_template'),
                            $c->get('map_factory'),
    Severity: Major
    Found in src/Module/WpBookingsCqrsModule.php and 3 other locations - About 45 mins to fix
    src/Module/WpBookingsCqrsModule.php on lines 297..306
    src/Module/WpBookingsCqrsModule.php on lines 385..394
    src/Module/WpBookingsCqrsModule.php on lines 640..649

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 95.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

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

    class WpBookingsCqrsModule extends AbstractBaseModule
    {
        /* @since [*next-version*] */
        use NormalizeArrayCapableTrait;
    
    
    Severity: Minor
    Found in src/Module/WpBookingsCqrsModule.php by phpmd

    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

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

            $mysqli,
            $migrationsDir,
            $dbVersion,
            TemplateFactoryInterface $templateFactory,
            $placeholderValues
    Severity: Minor
    Found in src/Module/Migrator.php - About 35 mins to fix

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

          public function __construct(Migrator $migrator, $targetVersion, $currentVersion, $eventManager, $eventFactory)
      Severity: Minor
      Found in src/Module/AutoMigrationsHandler.php - About 35 mins to fix

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

            public function query($query = [], $limit = null, $offset = null, $orderBy = null, $desc = false)
        Severity: Minor
        Found in src/BaseCqrsEntityManager.php - About 35 mins to fix

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

              protected function _updateSessionRules($id, $data)
              {
                  $b = $this->exprBuilder;
          
                  try {
          Severity: Minor
          Found in src/ResourcesEntityManager.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 query has a boolean flag argument $desc, which is a certain sign of a Single Responsibility Principle violation.
          Open

              public function query($query = [], $limit = null, $offset = null, $orderBy = null, $desc = false)
          Severity: Minor
          Found in src/BaseCqrsEntityManager.php by phpmd

          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

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

              public function __construct(wpdb $wpdb, $table, $fieldColumnMap, $insertBulk = true)

          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

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

              protected function _normalizeSqlFieldColumnMap($map)
              {
                  $newMap     = [];
                  $expBuilder = $this->_getExprBuilder();
          
          
          Severity: Minor
          Found in src/Wpdb/NormalizeSqlFieldColumnMapCapableTrait.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 _updateSessionRules uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
          Open

                      } else {
                          // If rule has an ID, update the existing rule
                          $_ruleExp = $b->eq(
                              $b->var('id'),
                              $b->lit($_ruleId)
          Severity: Minor
          Found in src/ResourcesEntityManager.php by phpmd

          ElseExpression

          Since: 1.4.0

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

          Example

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

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

          Avoid assigning values to variables in if clauses and the like (line '156', column '36').
          Open

              public function get($id)
              {
                  try {
                      $results = $this->selectRm->select($this->_createIdExpression($id), null, 1);
                  } catch (Exception $exception) {
          Severity: Minor
          Found in src/BaseCqrsEntityManager.php by phpmd

          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

          Severity
          Category
          Status
          Source
          Language