lib/Ajde/Crud/Options/Fields/Field.php

Summary

Maintainability
D
1 day
Test Coverage

Ajde_Crud_Options_Fields_Field has 58 functions (exceeds 20 allowed). Consider refactoring.
Open

class Ajde_Crud_Options_Fields_Field extends Ajde_Crud_Options
{
    /**
     * @return Ajde_Crud_Options_Fields
     */
Severity: Major
Found in lib/Ajde/Crud/Options/Fields/Field.php - About 1 day to fix

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

    class Ajde_Crud_Options_Fields_Field extends Ajde_Crud_Options
    {
        /**
         * @return Ajde_Crud_Options_Fields
         */

    File Field.php has 267 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    
    class Ajde_Crud_Options_Fields_Field extends Ajde_Crud_Options
    {
        /**
    Severity: Minor
    Found in lib/Ajde/Crud/Options/Fields/Field.php - About 2 hrs to fix

      The class Ajde_Crud_Options_Fields_Field has 58 public methods and attributes. Consider reducing the number of public items to less than 45.
      Open

      class Ajde_Crud_Options_Fields_Field extends Ajde_Crud_Options
      {
          /**
           * @return Ajde_Crud_Options_Fields
           */

      ExcessivePublicCount

      Since: 0.1

      A large number of public methods and attributes declared in a class can indicate the class may need to be broken up as increased effort will be required to thoroughly test it.

      Example

      public class Foo {
          public $value;
          public $something;
          public $var;
          // [... more more public attributes ...]
      
          public function doWork() {}
          public function doMoreWork() {}
          public function doWorkAgain() {}
          // [... more more public methods ...]
      }

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

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

          public function up($obj = 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

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

          public function addMetaField($metaId, $function = 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

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

              } else {
                  $showOnlyWhen[$field] = $value;
              }

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

              } else {
                  $dynamicSort[$field] = $value;
              }

      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 unused parameters such as '$obj'.
      Open

          public function up($obj = false)

      UnusedFormalParameter

      Since: 0.2

      Avoid passing parameters to methods or constructors and then not using those parameters.

      Example

      class Foo
      {
          private function bar($howdy)
          {
              // $howdy is not used
          }
      }

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

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

          public function addDynamicSort($field, $value)
          {
              if (!is_array($value)) {
                  $value = [$value];
              }
      Severity: Major
      Found in lib/Ajde/Crud/Options/Fields/Field.php and 1 other location - About 2 hrs to fix
      lib/Ajde/Crud/Options/Fields/Field.php on lines 490..503

      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 125.

      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 2 locations. Consider refactoring.
      Open

          public function addShowOnlyWhen($field, $value)
          {
              if (!is_array($value)) {
                  $value = [$value];
              }
      Severity: Major
      Found in lib/Ajde/Crud/Options/Fields/Field.php and 1 other location - About 2 hrs to fix
      lib/Ajde/Crud/Options/Fields/Field.php on lines 513..526

      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 125.

      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

      Avoid using short method names like Ajde_Crud_Options_Fields_Field::up(). The configured minimum method name length is 3.
      Open

          public function up($obj = false)
          {
              return parent::up($this);
          }

      ShortMethodName

      Since: 0.2

      Detects when very short method names are used.

      Example

      class ShortMethod {
          public function a( $index ) { // Violation
          }
      }

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

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

          public function setTextInputHeight($em)

      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

      The class Ajde_Crud_Options_Fields_Field is not named in CamelCase.
      Open

      class Ajde_Crud_Options_Fields_Field extends Ajde_Crud_Options
      {
          /**
           * @return Ajde_Crud_Options_Fields
           */

      CamelCaseClassName

      Since: 0.2

      It is considered best practice to use the CamelCase notation to name classes.

      Example

      class class_name {
      }

      Source

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

          public function setTextInputWidth($em)

      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