qcubed/framework

View on GitHub
includes/base_controls/QSortableGen.class.php

Summary

Maintainability
F
4 days
Test Coverage

Method __set has 194 lines of code (exceeds 25 allowed). Consider refactoring.
Open

        public function __set($strName, $mixValue) {
            switch ($strName) {
                case 'AppendTo':
                    $this->mixAppendTo = $mixValue;
                    $this->AddAttributeScript($this->getJqSetupFunction(), 'option', 'appendTo', $mixValue);
Severity: Major
Found in includes/base_controls/QSortableGen.class.php - About 7 hrs to fix

    Function __set has a Cognitive Complexity of 45 (exceeds 5 allowed). Consider refactoring.
    Open

            public function __set($strName, $mixValue) {
                switch ($strName) {
                    case 'AppendTo':
                        $this->mixAppendTo = $mixValue;
                        $this->AddAttributeScript($this->getJqSetupFunction(), 'option', 'appendTo', $mixValue);
    Severity: Minor
    Found in includes/base_controls/QSortableGen.class.php - About 6 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

    File QSortableGen.class.php has 406 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php    
        /**
         * This event is triggered when using connected lists, every connected
         * list on drag start receives it.
         * 
    Severity: Minor
    Found in includes/base_controls/QSortableGen.class.php - About 5 hrs to fix

      Function MakeJqOptions has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
      Open

              protected function MakeJqOptions() {
                  $jqOptions = null;
                  if (!is_null($val = $this->AppendTo)) {$jqOptions['appendTo'] = $val;}
                  if (!is_null($val = $this->Axis)) {$jqOptions['axis'] = $val;}
                  if (!is_null($val = $this->Cancel)) {$jqOptions['cancel'] = $val;}
      Severity: Minor
      Found in includes/base_controls/QSortableGen.class.php - About 3 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 QSortableGen has an overall complexity of 116 which is very high. The configured complexity threshold is 50.
      Open

          class QSortableGen extends QPanel    {
              protected $strJavaScripts = __JQUERY_EFFECTS__;
              protected $strStyleSheets = __JQUERY_CSS__;
              /** @var mixed */
              protected $mixAppendTo = null;

      The class QSortableGen has 15 public methods. Consider refactoring QSortableGen to keep number of public methods under 10.
      Open

          class QSortableGen extends QPanel    {
              protected $strJavaScripts = __JQUERY_EFFECTS__;
              protected $strStyleSheets = __JQUERY_CSS__;
              /** @var mixed */
              protected $mixAppendTo = null;

      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

      The class QSortableGen has 27 fields. Consider redesigning QSortableGen to keep the number of fields under 15.
      Open

          class QSortableGen extends QPanel    {
              protected $strJavaScripts = __JQUERY_EFFECTS__;
              protected $strStyleSheets = __JQUERY_CSS__;
              /** @var mixed */
              protected $mixAppendTo = null;

      TooManyFields

      Since: 0.1

      Classes that have too many fields could be redesigned to have fewer fields, possibly through some nested object grouping of some of the information. For example, a class with city/state/zip fields could instead have one Address field.

      Example

      class Person {
         protected $one;
         private $two;
         private $three;
         [... many more fields ...]
      }

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

      Method __get has 34 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

              public function __get($strName) {
                  switch ($strName) {
                      case 'AppendTo': return $this->mixAppendTo;
                      case 'Axis': return $this->strAxis;
                      case 'Cancel': return $this->mixCancel;
      Severity: Minor
      Found in includes/base_controls/QSortableGen.class.php - About 1 hr to fix

        Method MakeJqOptions has 27 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

                protected function MakeJqOptions() {
                    $jqOptions = null;
                    if (!is_null($val = $this->AppendTo)) {$jqOptions['appendTo'] = $val;}
                    if (!is_null($val = $this->Axis)) {$jqOptions['axis'] = $val;}
                    if (!is_null($val = $this->Cancel)) {$jqOptions['cancel'] = $val;}
        Severity: Minor
        Found in includes/base_controls/QSortableGen.class.php - About 1 hr to fix

          Avoid too many return statements within this method.
          Open

                          case 'Containment': return $this->mixContainment;
          Severity: Major
          Found in includes/base_controls/QSortableGen.class.php - About 30 mins to fix

            Avoid too many return statements within this method.
            Open

                            case 'Cursor': return $this->strCursor;
            Severity: Major
            Found in includes/base_controls/QSortableGen.class.php - About 30 mins to fix

              Avoid too many return statements within this method.
              Open

                              case 'DropOnEmpty': return $this->blnDropOnEmpty;
              Severity: Major
              Found in includes/base_controls/QSortableGen.class.php - About 30 mins to fix

                Avoid too many return statements within this method.
                Open

                                case 'Distance': return $this->intDistance;
                Severity: Major
                Found in includes/base_controls/QSortableGen.class.php - About 30 mins to fix

                  Avoid too many return statements within this method.
                  Open

                                  case 'Opacity': return $this->intOpacity;
                  Severity: Major
                  Found in includes/base_controls/QSortableGen.class.php - About 30 mins to fix

                    Avoid too many return statements within this method.
                    Open

                                    case 'Handle': return $this->mixHandle;
                    Severity: Major
                    Found in includes/base_controls/QSortableGen.class.php - About 30 mins to fix

                      Avoid too many return statements within this method.
                      Open

                                      case 'CursorAt': return $this->mixCursorAt;
                      Severity: Major
                      Found in includes/base_controls/QSortableGen.class.php - About 30 mins to fix

                        Avoid too many return statements within this method.
                        Open

                                        case 'ForcePlaceholderSize': return $this->blnForcePlaceholderSize;
                        Severity: Major
                        Found in includes/base_controls/QSortableGen.class.php - About 30 mins to fix

                          Avoid too many return statements within this method.
                          Open

                                          case 'Placeholder': return $this->strPlaceholder;
                          Severity: Major
                          Found in includes/base_controls/QSortableGen.class.php - About 30 mins to fix

                            Avoid too many return statements within this method.
                            Open

                                            case 'ScrollSensitivity': return $this->intScrollSensitivity;
                            Severity: Major
                            Found in includes/base_controls/QSortableGen.class.php - About 30 mins to fix

                              Avoid too many return statements within this method.
                              Open

                                              case 'Disabled': return $this->blnDisabled;
                              Severity: Major
                              Found in includes/base_controls/QSortableGen.class.php - About 30 mins to fix

                                Avoid too many return statements within this method.
                                Open

                                                case 'Items': return $this->mixItems;
                                Severity: Major
                                Found in includes/base_controls/QSortableGen.class.php - About 30 mins to fix

                                  Avoid too many return statements within this method.
                                  Open

                                                  case 'Helper': return $this->mixHelper;
                                  Severity: Major
                                  Found in includes/base_controls/QSortableGen.class.php - About 30 mins to fix

                                    Avoid too many return statements within this method.
                                    Open

                                                    case 'Delay': return $this->intDelay;
                                    Severity: Major
                                    Found in includes/base_controls/QSortableGen.class.php - About 30 mins to fix

                                      Avoid too many return statements within this method.
                                      Open

                                                              return parent::__get($strName); 
                                      Severity: Major
                                      Found in includes/base_controls/QSortableGen.class.php - About 30 mins to fix

                                        Avoid too many return statements within this method.
                                        Open

                                                        case 'Revert': return $this->mixRevert;
                                        Severity: Major
                                        Found in includes/base_controls/QSortableGen.class.php - About 30 mins to fix

                                          Avoid too many return statements within this method.
                                          Open

                                                          case 'Scroll': return $this->blnScroll;
                                          Severity: Major
                                          Found in includes/base_controls/QSortableGen.class.php - About 30 mins to fix

                                            Avoid too many return statements within this method.
                                            Open

                                                            case 'Tolerance': return $this->strTolerance;
                                            Severity: Major
                                            Found in includes/base_controls/QSortableGen.class.php - About 30 mins to fix

                                              Avoid too many return statements within this method.
                                              Open

                                                              case 'ZIndex': return $this->intZIndex;
                                              Severity: Major
                                              Found in includes/base_controls/QSortableGen.class.php - About 30 mins to fix

                                                Avoid too many return statements within this method.
                                                Open

                                                                case 'Grid': return $this->arrGrid;
                                                Severity: Major
                                                Found in includes/base_controls/QSortableGen.class.php - About 30 mins to fix

                                                  Avoid too many return statements within this method.
                                                  Open

                                                                  case 'ScrollSpeed': return $this->intScrollSpeed;
                                                  Severity: Major
                                                  Found in includes/base_controls/QSortableGen.class.php - About 30 mins to fix

                                                    Avoid too many return statements within this method.
                                                    Open

                                                                    case 'ForceHelperSize': return $this->blnForceHelperSize;
                                                    Severity: Major
                                                    Found in includes/base_controls/QSortableGen.class.php - About 30 mins to fix

                                                      The method MakeJqOptions() has an NPath complexity of 33554432. The configured NPath complexity threshold is 200.
                                                      Open

                                                              protected function MakeJqOptions() {
                                                                  $jqOptions = null;
                                                                  if (!is_null($val = $this->AppendTo)) {$jqOptions['appendTo'] = $val;}
                                                                  if (!is_null($val = $this->Axis)) {$jqOptions['axis'] = $val;}
                                                                  if (!is_null($val = $this->Cancel)) {$jqOptions['cancel'] = $val;}

                                                      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 __set() has 223 lines of code. Current threshold is set to 100. Avoid really long methods.
                                                      Open

                                                              public function __set($strName, $mixValue) {
                                                                  switch ($strName) {
                                                                      case 'AppendTo':
                                                                          $this->mixAppendTo = $mixValue;
                                                                          $this->AddAttributeScript($this->getJqSetupFunction(), 'option', 'appendTo', $mixValue);

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

                                                              protected function MakeJqOptions() {
                                                                  $jqOptions = null;
                                                                  if (!is_null($val = $this->AppendTo)) {$jqOptions['appendTo'] = $val;}
                                                                  if (!is_null($val = $this->Axis)) {$jqOptions['axis'] = $val;}
                                                                  if (!is_null($val = $this->Cancel)) {$jqOptions['cancel'] = $val;}

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

                                                              public function __set($strName, $mixValue) {
                                                                  switch ($strName) {
                                                                      case 'AppendTo':
                                                                          $this->mixAppendTo = $mixValue;
                                                                          $this->AddAttributeScript($this->getJqSetupFunction(), 'option', 'appendTo', $mixValue);

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

                                                              public function __get($strName) {
                                                                  switch ($strName) {
                                                                      case 'AppendTo': return $this->mixAppendTo;
                                                                      case 'Axis': return $this->strAxis;
                                                                      case 'Cancel': return $this->mixCancel;

                                                      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

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

                                                                      new QModelConnectorParam (get_called_class(), 'ZIndex', 'Z-index for element/helper while being sorted.', QType::Integer),

                                                      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 '1049', column '9').
                                                      Open

                                                                      new QModelConnectorParam (get_called_class(), 'ScrollSpeed', 'The speed at which the window should scroll once the mouse pointergets within the scrollSensitivity distance.', QType::Integer),

                                                      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 '1038', column '9').
                                                      Open

                                                                      new QModelConnectorParam (get_called_class(), 'Delay', 'Time in milliseconds to define when the sorting should start. Adding adelay helps preventing unwanted drags when clicking on an element.', QType::Integer),

                                                      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 '1040', column '9').
                                                      Open

                                                                      new QModelConnectorParam (get_called_class(), 'Distance', 'Tolerance, in pixels, for when sorting should start. If specified,sorting will not start until after mouse is dragged beyond distance.Can be used to allow for clicks on elements within a handle.', QType::Integer),

                                                      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 '1043', column '9').
                                                      Open

                                                                      new QModelConnectorParam (get_called_class(), 'ForcePlaceholderSize', 'If true, forces the placeholder to have a size.', QType::Boolean),

                                                      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 '1050', column '9').
                                                      Open

                                                                      new QModelConnectorParam (get_called_class(), 'Tolerance', 'Specifies which mode to use for testing whether the item being movedis hovering over another item. Possible values:     * \"intersect\": The item overlaps the other item by at least 50%.    * \"pointer\": The mouse pointer overlaps the other item.', QType::String),

                                                      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 '1041', column '9').
                                                      Open

                                                                      new QModelConnectorParam (get_called_class(), 'DropOnEmpty', 'If false, items from this sortable cant be dropped on an empty connectsortable (see the connectWith option.', QType::Boolean),

                                                      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 '1037', column '9').
                                                      Open

                                                                      new QModelConnectorParam (get_called_class(), 'Cursor', 'Defines the cursor that is being shown while sorting.', QType::String),

                                                      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 '1044', column '9').
                                                      Open

                                                                      new QModelConnectorParam (get_called_class(), 'Grid', 'Snaps the sorting element or helper to a grid, every x and y pixels.Array values: [ x, y ].', QType::ArrayType),

                                                      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 '1046', column '9').
                                                      Open

                                                                      new QModelConnectorParam (get_called_class(), 'Placeholder', 'A class name that gets applied to the otherwise white space.', QType::String),

                                                      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 '1048', column '9').
                                                      Open

                                                                      new QModelConnectorParam (get_called_class(), 'ScrollSensitivity', 'Defines how near the mouse must be to an edge to start scrolling.', QType::Integer),

                                                      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 '1036', column '9').
                                                      Open

                                                                      new QModelConnectorParam (get_called_class(), 'Axis', 'If defined, the items can be dragged only horizontally or vertically.Possible values: \"x\", \"y\".', QType::String),

                                                      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 '1047', column '9').
                                                      Open

                                                                      new QModelConnectorParam (get_called_class(), 'Scroll', 'If set to true, the page scrolls when coming to an edge.', QType::Boolean),

                                                      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 '1045', column '9').
                                                      Open

                                                                      new QModelConnectorParam (get_called_class(), 'Opacity', 'Defines the opacity of the helper while sorting. From 0.01 to 1.', QType::Integer),

                                                      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 '1039', column '9').
                                                      Open

                                                                      new QModelConnectorParam (get_called_class(), 'Disabled', 'Disables the sortable if set to true.', QType::Boolean),

                                                      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 '1042', column '9').
                                                      Open

                                                                      new QModelConnectorParam (get_called_class(), 'ForceHelperSize', 'If true, forces the helper to have a size.', QType::Boolean),

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

                                                              protected function MakeJqOptions() {
                                                                  $jqOptions = null;
                                                                  if (!is_null($val = $this->AppendTo)) {$jqOptions['appendTo'] = $val;}
                                                                  if (!is_null($val = $this->Axis)) {$jqOptions['axis'] = $val;}
                                                                  if (!is_null($val = $this->Cancel)) {$jqOptions['cancel'] = $val;}

                                                      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

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

                                                              protected function MakeJqOptions() {
                                                                  $jqOptions = null;
                                                                  if (!is_null($val = $this->AppendTo)) {$jqOptions['appendTo'] = $val;}
                                                                  if (!is_null($val = $this->Axis)) {$jqOptions['axis'] = $val;}
                                                                  if (!is_null($val = $this->Cancel)) {$jqOptions['cancel'] = $val;}

                                                      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

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

                                                              protected function MakeJqOptions() {
                                                                  $jqOptions = null;
                                                                  if (!is_null($val = $this->AppendTo)) {$jqOptions['appendTo'] = $val;}
                                                                  if (!is_null($val = $this->Axis)) {$jqOptions['axis'] = $val;}
                                                                  if (!is_null($val = $this->Cancel)) {$jqOptions['cancel'] = $val;}

                                                      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

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

                                                              protected function MakeJqOptions() {
                                                                  $jqOptions = null;
                                                                  if (!is_null($val = $this->AppendTo)) {$jqOptions['appendTo'] = $val;}
                                                                  if (!is_null($val = $this->Axis)) {$jqOptions['axis'] = $val;}
                                                                  if (!is_null($val = $this->Cancel)) {$jqOptions['cancel'] = $val;}

                                                      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

                                                      Avoid using static access to class 'QApplication' in method 'GetEndScript'.
                                                      Open

                                                                      QApplication::ExecuteControlCommand($strId, $strFunc, $jqOptions, QJsPriority::High);

                                                      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 '566', column '17').
                                                      Open

                                                              protected function MakeJqOptions() {
                                                                  $jqOptions = null;
                                                                  if (!is_null($val = $this->AppendTo)) {$jqOptions['appendTo'] = $val;}
                                                                  if (!is_null($val = $this->Axis)) {$jqOptions['axis'] = $val;}
                                                                  if (!is_null($val = $this->Cancel)) {$jqOptions['cancel'] = $val;}

                                                      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

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

                                                              protected function MakeJqOptions() {
                                                                  $jqOptions = null;
                                                                  if (!is_null($val = $this->AppendTo)) {$jqOptions['appendTo'] = $val;}
                                                                  if (!is_null($val = $this->Axis)) {$jqOptions['axis'] = $val;}
                                                                  if (!is_null($val = $this->Cancel)) {$jqOptions['cancel'] = $val;}

                                                      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

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

                                                              protected function MakeJqOptions() {
                                                                  $jqOptions = null;
                                                                  if (!is_null($val = $this->AppendTo)) {$jqOptions['appendTo'] = $val;}
                                                                  if (!is_null($val = $this->Axis)) {$jqOptions['axis'] = $val;}
                                                                  if (!is_null($val = $this->Cancel)) {$jqOptions['cancel'] = $val;}

                                                      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

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

                                                              protected function MakeJqOptions() {
                                                                  $jqOptions = null;
                                                                  if (!is_null($val = $this->AppendTo)) {$jqOptions['appendTo'] = $val;}
                                                                  if (!is_null($val = $this->Axis)) {$jqOptions['axis'] = $val;}
                                                                  if (!is_null($val = $this->Cancel)) {$jqOptions['cancel'] = $val;}

                                                      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

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

                                                              protected function MakeJqOptions() {
                                                                  $jqOptions = null;
                                                                  if (!is_null($val = $this->AppendTo)) {$jqOptions['appendTo'] = $val;}
                                                                  if (!is_null($val = $this->Axis)) {$jqOptions['axis'] = $val;}
                                                                  if (!is_null($val = $this->Cancel)) {$jqOptions['cancel'] = $val;}

                                                      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

                                                      Avoid using static access to class 'QApplication' in method 'GetEndScript'.
                                                      Open

                                                                      QApplication::ExecuteControlCommand($strId, $strFunc, QJsPriority::High);

                                                      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 'QApplication' in method 'Cancel'.
                                                      Open

                                                                  QApplication::ExecuteControlCommand($this->getJqControlId(), $this->getJqSetupFunction(), "cancel", QJsPriority::Low);

                                                      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 '561', column '17').
                                                      Open

                                                              protected function MakeJqOptions() {
                                                                  $jqOptions = null;
                                                                  if (!is_null($val = $this->AppendTo)) {$jqOptions['appendTo'] = $val;}
                                                                  if (!is_null($val = $this->Axis)) {$jqOptions['axis'] = $val;}
                                                                  if (!is_null($val = $this->Cancel)) {$jqOptions['cancel'] = $val;}

                                                      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

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

                                                              protected function MakeJqOptions() {
                                                                  $jqOptions = null;
                                                                  if (!is_null($val = $this->AppendTo)) {$jqOptions['appendTo'] = $val;}
                                                                  if (!is_null($val = $this->Axis)) {$jqOptions['axis'] = $val;}
                                                                  if (!is_null($val = $this->Cancel)) {$jqOptions['cancel'] = $val;}

                                                      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

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

                                                              protected function MakeJqOptions() {
                                                                  $jqOptions = null;
                                                                  if (!is_null($val = $this->AppendTo)) {$jqOptions['appendTo'] = $val;}
                                                                  if (!is_null($val = $this->Axis)) {$jqOptions['axis'] = $val;}
                                                                  if (!is_null($val = $this->Cancel)) {$jqOptions['cancel'] = $val;}

                                                      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

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

                                                              protected function MakeJqOptions() {
                                                                  $jqOptions = null;
                                                                  if (!is_null($val = $this->AppendTo)) {$jqOptions['appendTo'] = $val;}
                                                                  if (!is_null($val = $this->Axis)) {$jqOptions['axis'] = $val;}
                                                                  if (!is_null($val = $this->Cancel)) {$jqOptions['cancel'] = $val;}

                                                      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

                                                      Avoid using static access to class 'QApplication' in method 'Disable'.
                                                      Open

                                                                  QApplication::ExecuteControlCommand($this->getJqControlId(), $this->getJqSetupFunction(), "disable", QJsPriority::Low);

                                                      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 '550', column '17').
                                                      Open

                                                              protected function MakeJqOptions() {
                                                                  $jqOptions = null;
                                                                  if (!is_null($val = $this->AppendTo)) {$jqOptions['appendTo'] = $val;}
                                                                  if (!is_null($val = $this->Axis)) {$jqOptions['axis'] = $val;}
                                                                  if (!is_null($val = $this->Cancel)) {$jqOptions['cancel'] = $val;}

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

                                                                  } else {
                                                                      QApplication::ExecuteControlCommand($strId, $strFunc, $jqOptions, QJsPriority::High);
                                                                  }

                                                      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 '569', column '17').
                                                      Open

                                                              protected function MakeJqOptions() {
                                                                  $jqOptions = null;
                                                                  if (!is_null($val = $this->AppendTo)) {$jqOptions['appendTo'] = $val;}
                                                                  if (!is_null($val = $this->Axis)) {$jqOptions['axis'] = $val;}
                                                                  if (!is_null($val = $this->Cancel)) {$jqOptions['cancel'] = $val;}

                                                      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

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

                                                              protected function MakeJqOptions() {
                                                                  $jqOptions = null;
                                                                  if (!is_null($val = $this->AppendTo)) {$jqOptions['appendTo'] = $val;}
                                                                  if (!is_null($val = $this->Axis)) {$jqOptions['axis'] = $val;}
                                                                  if (!is_null($val = $this->Cancel)) {$jqOptions['cancel'] = $val;}

                                                      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

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

                                                              protected function MakeJqOptions() {
                                                                  $jqOptions = null;
                                                                  if (!is_null($val = $this->AppendTo)) {$jqOptions['appendTo'] = $val;}
                                                                  if (!is_null($val = $this->Axis)) {$jqOptions['axis'] = $val;}
                                                                  if (!is_null($val = $this->Cancel)) {$jqOptions['cancel'] = $val;}

                                                      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

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

                                                              protected function MakeJqOptions() {
                                                                  $jqOptions = null;
                                                                  if (!is_null($val = $this->AppendTo)) {$jqOptions['appendTo'] = $val;}
                                                                  if (!is_null($val = $this->Axis)) {$jqOptions['axis'] = $val;}
                                                                  if (!is_null($val = $this->Cancel)) {$jqOptions['cancel'] = $val;}

                                                      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

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

                                                              protected function MakeJqOptions() {
                                                                  $jqOptions = null;
                                                                  if (!is_null($val = $this->AppendTo)) {$jqOptions['appendTo'] = $val;}
                                                                  if (!is_null($val = $this->Axis)) {$jqOptions['axis'] = $val;}
                                                                  if (!is_null($val = $this->Cancel)) {$jqOptions['cancel'] = $val;}

                                                      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

                                                      Avoid using static access to class 'QApplication' in method 'GetEndScript'.
                                                      Open

                                                                      QApplication::ExecuteControlCommand($strId, 'off', QJsPriority::High);

                                                      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 '556', column '17').
                                                      Open

                                                              protected function MakeJqOptions() {
                                                                  $jqOptions = null;
                                                                  if (!is_null($val = $this->AppendTo)) {$jqOptions['appendTo'] = $val;}
                                                                  if (!is_null($val = $this->Axis)) {$jqOptions['axis'] = $val;}
                                                                  if (!is_null($val = $this->Cancel)) {$jqOptions['cancel'] = $val;}

                                                      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

                                                      Avoid using static access to class 'QApplication' in method 'Destroy'.
                                                      Open

                                                                  QApplication::ExecuteControlCommand($this->getJqControlId(), $this->getJqSetupFunction(), "destroy", QJsPriority::Low);

                                                      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 '554', column '17').
                                                      Open

                                                              protected function MakeJqOptions() {
                                                                  $jqOptions = null;
                                                                  if (!is_null($val = $this->AppendTo)) {$jqOptions['appendTo'] = $val;}
                                                                  if (!is_null($val = $this->Axis)) {$jqOptions['axis'] = $val;}
                                                                  if (!is_null($val = $this->Cancel)) {$jqOptions['cancel'] = $val;}

                                                      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

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

                                                              protected function MakeJqOptions() {
                                                                  $jqOptions = null;
                                                                  if (!is_null($val = $this->AppendTo)) {$jqOptions['appendTo'] = $val;}
                                                                  if (!is_null($val = $this->Axis)) {$jqOptions['axis'] = $val;}
                                                                  if (!is_null($val = $this->Cancel)) {$jqOptions['cancel'] = $val;}

                                                      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

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

                                                              protected function MakeJqOptions() {
                                                                  $jqOptions = null;
                                                                  if (!is_null($val = $this->AppendTo)) {$jqOptions['appendTo'] = $val;}
                                                                  if (!is_null($val = $this->Axis)) {$jqOptions['axis'] = $val;}
                                                                  if (!is_null($val = $this->Cancel)) {$jqOptions['cancel'] = $val;}

                                                      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

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

                                                              protected function MakeJqOptions() {
                                                                  $jqOptions = null;
                                                                  if (!is_null($val = $this->AppendTo)) {$jqOptions['appendTo'] = $val;}
                                                                  if (!is_null($val = $this->Axis)) {$jqOptions['axis'] = $val;}
                                                                  if (!is_null($val = $this->Cancel)) {$jqOptions['cancel'] = $val;}

                                                      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

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

                                                              protected function MakeJqOptions() {
                                                                  $jqOptions = null;
                                                                  if (!is_null($val = $this->AppendTo)) {$jqOptions['appendTo'] = $val;}
                                                                  if (!is_null($val = $this->Axis)) {$jqOptions['axis'] = $val;}
                                                                  if (!is_null($val = $this->Cancel)) {$jqOptions['cancel'] = $val;}

                                                      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

                                                      Avoid using static access to class 'QApplication' in method 'Option2'.
                                                      Open

                                                                  QApplication::ExecuteControlCommand($this->getJqControlId(), $this->getJqSetupFunction(), "option", $optionName, $value, QJsPriority::Low);

                                                      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 'QApplication' in method 'Enable'.
                                                      Open

                                                                  QApplication::ExecuteControlCommand($this->getJqControlId(), $this->getJqSetupFunction(), "enable", QJsPriority::Low);

                                                      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 'QType' in method '__set'.
                                                      Open

                                                                              $this->blnForcePlaceholderSize = QType::Cast($mixValue, QType::Boolean);

                                                      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 'QType' in method '__set'.
                                                      Open

                                                                              $this->strTolerance = QType::Cast($mixValue, QType::String);

                                                      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 'QApplication' in method 'Option3'.
                                                      Open

                                                                  QApplication::ExecuteControlCommand($this->getJqControlId(), $this->getJqSetupFunction(), "option", $options, QJsPriority::Low);

                                                      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 'QApplication' in method 'RefreshPositions'.
                                                      Open

                                                                  QApplication::ExecuteControlCommand($this->getJqControlId(), $this->getJqSetupFunction(), "refreshPositions", QJsPriority::Low);

                                                      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 'QApplication' in method 'Refresh'.
                                                      Open

                                                                  QApplication::ExecuteControlCommand($this->getJqControlId(), $this->getJqSetupFunction(), "refresh", QJsPriority::Low);

                                                      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 'QType' in method '__set'.
                                                      Open

                                                                              $this->intOpacity = QType::Cast($mixValue, QType::Integer);

                                                      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 'QApplication' in method 'ToArray'.
                                                      Open

                                                                  QApplication::ExecuteControlCommand($this->getJqControlId(), $this->getJqSetupFunction(), "toArray", $options, QJsPriority::Low);

                                                      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 'QType' in method '__set'.
                                                      Open

                                                                              $this->blnScroll = QType::Cast($mixValue, QType::Boolean);

                                                      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 'QType' in method '__set'.
                                                      Open

                                                                              $this->intScrollSpeed = QType::Cast($mixValue, QType::Integer);

                                                      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 'QType' in method '__set'.
                                                      Open

                                                                              $this->strAxis = QType::Cast($mixValue, QType::String);

                                                      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 'QType' in method '__set'.
                                                      Open

                                                                              $this->intZIndex = QType::Cast($mixValue, QType::Integer);

                                                      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 'QApplication' in method 'Option'.
                                                      Open

                                                                  QApplication::ExecuteControlCommand($this->getJqControlId(), $this->getJqSetupFunction(), "option", $optionName, QJsPriority::Low);

                                                      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 'QType' in method '__set'.
                                                      Open

                                                                              $this->blnForceHelperSize = QType::Cast($mixValue, QType::Boolean);

                                                      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 'QApplication' in method 'Instance'.
                                                      Open

                                                                  QApplication::ExecuteControlCommand($this->getJqControlId(), $this->getJqSetupFunction(), "instance", QJsPriority::Low);

                                                      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 'QType' in method '__set'.
                                                      Open

                                                                              $this->blnDisabled = QType::Cast($mixValue, QType::Boolean);

                                                      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 'QType' in method '__set'.
                                                      Open

                                                                              $this->arrGrid = QType::Cast($mixValue, QType::ArrayType);

                                                      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 'QType' in method '__set'.
                                                      Open

                                                                              $this->intDistance = QType::Cast($mixValue, QType::Integer);

                                                      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 'QType' in method '__set'.
                                                      Open

                                                                              $this->intDelay = QType::Cast($mixValue, QType::Integer);

                                                      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 'QApplication' in method 'Option1'.
                                                      Open

                                                                  QApplication::ExecuteControlCommand($this->getJqControlId(), $this->getJqSetupFunction(), "option", QJsPriority::Low);

                                                      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 'QType' in method '__set'.
                                                      Open

                                                                              $this->strCursor = QType::Cast($mixValue, QType::String);

                                                      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 'QType' in method '__set'.
                                                      Open

                                                                              $this->intScrollSensitivity = QType::Cast($mixValue, QType::Integer);

                                                      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 'QApplication' in method 'Serialize'.
                                                      Open

                                                                  QApplication::ExecuteControlCommand($this->getJqControlId(), $this->getJqSetupFunction(), "serialize", $options, QJsPriority::Low);

                                                      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 'QType' in method '__set'.
                                                      Open

                                                                              $this->blnDropOnEmpty = QType::Cast($mixValue, QType::Boolean);

                                                      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 'QType' in method '__set'.
                                                      Open

                                                                              $this->strPlaceholder = QType::Cast($mixValue, QType::String);

                                                      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 excessively long variable names like $blnForcePlaceholderSize. Keep variable name length under 20.
                                                      Open

                                                              protected $blnForcePlaceholderSize = null;

                                                      LongVariable

                                                      Since: 0.2

                                                      Detects when a field, formal or local variable is declared with a long name.

                                                      Example

                                                      class Something {
                                                          protected $reallyLongIntName = -3; // VIOLATION - Field
                                                          public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
                                                              $otherReallyLongName = -5; // VIOLATION - Local
                                                              for ($interestingIntIndex = 0; // VIOLATION - For
                                                                   $interestingIntIndex < 10;
                                                                   $interestingIntIndex++ ) {
                                                              }
                                                          }
                                                      }

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

                                                      The class QSortable_BeforeStopEvent is not named in CamelCase.
                                                      Open

                                                          class QSortable_BeforeStopEvent extends QJqUiEvent {
                                                              const EventName = 'sortbeforestop';
                                                          }

                                                      CamelCaseClassName

                                                      Since: 0.2

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

                                                      Example

                                                      class class_name {
                                                      }

                                                      Source

                                                      The class QSortable_SortEvent is not named in CamelCase.
                                                      Open

                                                          class QSortable_SortEvent extends QJqUiEvent {
                                                              const EventName = 'sort';
                                                          }

                                                      CamelCaseClassName

                                                      Since: 0.2

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

                                                      Example

                                                      class class_name {
                                                      }

                                                      Source

                                                      The class QSortable_DeactivateEvent is not named in CamelCase.
                                                      Open

                                                          class QSortable_DeactivateEvent extends QJqUiEvent {
                                                              const EventName = 'sortdeactivate';
                                                          }

                                                      CamelCaseClassName

                                                      Since: 0.2

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

                                                      Example

                                                      class class_name {
                                                      }

                                                      Source

                                                      The class QSortable_StartEvent is not named in CamelCase.
                                                      Open

                                                          class QSortable_StartEvent extends QJqUiEvent {
                                                              const EventName = 'sortstart';
                                                          }

                                                      CamelCaseClassName

                                                      Since: 0.2

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

                                                      Example

                                                      class class_name {
                                                      }

                                                      Source

                                                      The class QSortable_ReceiveEvent is not named in CamelCase.
                                                      Open

                                                          class QSortable_ReceiveEvent extends QJqUiEvent {
                                                              const EventName = 'sortreceive';
                                                          }

                                                      CamelCaseClassName

                                                      Since: 0.2

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

                                                      Example

                                                      class class_name {
                                                      }

                                                      Source

                                                      The class QSortable_UpdateEvent is not named in CamelCase.
                                                      Open

                                                          class QSortable_UpdateEvent extends QJqUiEvent {
                                                              const EventName = 'sortupdate';
                                                          }

                                                      CamelCaseClassName

                                                      Since: 0.2

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

                                                      Example

                                                      class class_name {
                                                      }

                                                      Source

                                                      The class QSortable_ChangeEvent is not named in CamelCase.
                                                      Open

                                                          class QSortable_ChangeEvent extends QJqUiEvent {
                                                              const EventName = 'sortchange';
                                                          }

                                                      CamelCaseClassName

                                                      Since: 0.2

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

                                                      Example

                                                      class class_name {
                                                      }

                                                      Source

                                                      The class QSortable_OutEvent is not named in CamelCase.
                                                      Open

                                                          class QSortable_OutEvent extends QJqUiEvent {
                                                              const EventName = 'sortout';
                                                          }

                                                      CamelCaseClassName

                                                      Since: 0.2

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

                                                      Example

                                                      class class_name {
                                                      }

                                                      Source

                                                      The class QSortable_ActivateEvent is not named in CamelCase.
                                                      Open

                                                          class QSortable_ActivateEvent extends QJqUiEvent {
                                                              const EventName = 'sortactivate';
                                                          }

                                                      CamelCaseClassName

                                                      Since: 0.2

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

                                                      Example

                                                      class class_name {
                                                      }

                                                      Source

                                                      The class QSortable_CreateEvent is not named in CamelCase.
                                                      Open

                                                          class QSortable_CreateEvent extends QJqUiEvent {
                                                              const EventName = 'sortcreate';
                                                          }

                                                      CamelCaseClassName

                                                      Since: 0.2

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

                                                      Example

                                                      class class_name {
                                                      }

                                                      Source

                                                      The class QSortable_OverEvent is not named in CamelCase.
                                                      Open

                                                          class QSortable_OverEvent extends QJqUiEvent {
                                                              const EventName = 'sortover';
                                                          }

                                                      CamelCaseClassName

                                                      Since: 0.2

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

                                                      Example

                                                      class class_name {
                                                      }

                                                      Source

                                                      The class QSortable_RemoveEvent is not named in CamelCase.
                                                      Open

                                                          class QSortable_RemoveEvent extends QJqUiEvent {
                                                              const EventName = 'sortremove';
                                                          }

                                                      CamelCaseClassName

                                                      Since: 0.2

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

                                                      Example

                                                      class class_name {
                                                      }

                                                      Source

                                                      The class QSortable_StopEvent is not named in CamelCase.
                                                      Open

                                                          class QSortable_StopEvent extends QJqUiEvent {
                                                              const EventName = 'sortstop';
                                                          }

                                                      CamelCaseClassName

                                                      Since: 0.2

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

                                                      Example

                                                      class class_name {
                                                      }

                                                      Source

                                                      Constant EventName should be defined in uppercase
                                                      Open

                                                              const EventName = 'sortactivate';

                                                      ConstantNamingConventions

                                                      Since: 0.2

                                                      Class/Interface constant names should always be defined in uppercase.

                                                      Example

                                                      class Foo {
                                                          const MY_NUM = 0; // ok
                                                          const myTest = ""; // fail
                                                      }

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

                                                      Constant EventName should be defined in uppercase
                                                      Open

                                                              const EventName = 'sortcreate';

                                                      ConstantNamingConventions

                                                      Since: 0.2

                                                      Class/Interface constant names should always be defined in uppercase.

                                                      Example

                                                      class Foo {
                                                          const MY_NUM = 0; // ok
                                                          const myTest = ""; // fail
                                                      }

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

                                                      Constant EventName should be defined in uppercase
                                                      Open

                                                              const EventName = 'sortremove';

                                                      ConstantNamingConventions

                                                      Since: 0.2

                                                      Class/Interface constant names should always be defined in uppercase.

                                                      Example

                                                      class Foo {
                                                          const MY_NUM = 0; // ok
                                                          const myTest = ""; // fail
                                                      }

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

                                                      Constant EventName should be defined in uppercase
                                                      Open

                                                              const EventName = 'sort';

                                                      ConstantNamingConventions

                                                      Since: 0.2

                                                      Class/Interface constant names should always be defined in uppercase.

                                                      Example

                                                      class Foo {
                                                          const MY_NUM = 0; // ok
                                                          const myTest = ""; // fail
                                                      }

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

                                                      Constant EventName should be defined in uppercase
                                                      Open

                                                              const EventName = 'sortupdate';

                                                      ConstantNamingConventions

                                                      Since: 0.2

                                                      Class/Interface constant names should always be defined in uppercase.

                                                      Example

                                                      class Foo {
                                                          const MY_NUM = 0; // ok
                                                          const myTest = ""; // fail
                                                      }

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

                                                      Constant EventName should be defined in uppercase
                                                      Open

                                                              const EventName = 'sortstart';

                                                      ConstantNamingConventions

                                                      Since: 0.2

                                                      Class/Interface constant names should always be defined in uppercase.

                                                      Example

                                                      class Foo {
                                                          const MY_NUM = 0; // ok
                                                          const myTest = ""; // fail
                                                      }

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

                                                      Constant EventName should be defined in uppercase
                                                      Open

                                                              const EventName = 'sortout';

                                                      ConstantNamingConventions

                                                      Since: 0.2

                                                      Class/Interface constant names should always be defined in uppercase.

                                                      Example

                                                      class Foo {
                                                          const MY_NUM = 0; // ok
                                                          const myTest = ""; // fail
                                                      }

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

                                                      Constant EventName should be defined in uppercase
                                                      Open

                                                              const EventName = 'sortchange';

                                                      ConstantNamingConventions

                                                      Since: 0.2

                                                      Class/Interface constant names should always be defined in uppercase.

                                                      Example

                                                      class Foo {
                                                          const MY_NUM = 0; // ok
                                                          const myTest = ""; // fail
                                                      }

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

                                                      Constant EventName should be defined in uppercase
                                                      Open

                                                              const EventName = 'sortreceive';

                                                      ConstantNamingConventions

                                                      Since: 0.2

                                                      Class/Interface constant names should always be defined in uppercase.

                                                      Example

                                                      class Foo {
                                                          const MY_NUM = 0; // ok
                                                          const myTest = ""; // fail
                                                      }

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

                                                      Constant EventName should be defined in uppercase
                                                      Open

                                                              const EventName = 'sortover';

                                                      ConstantNamingConventions

                                                      Since: 0.2

                                                      Class/Interface constant names should always be defined in uppercase.

                                                      Example

                                                      class Foo {
                                                          const MY_NUM = 0; // ok
                                                          const myTest = ""; // fail
                                                      }

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

                                                      Constant EventName should be defined in uppercase
                                                      Open

                                                              const EventName = 'sortstop';

                                                      ConstantNamingConventions

                                                      Since: 0.2

                                                      Class/Interface constant names should always be defined in uppercase.

                                                      Example

                                                      class Foo {
                                                          const MY_NUM = 0; // ok
                                                          const myTest = ""; // fail
                                                      }

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

                                                      Constant EventName should be defined in uppercase
                                                      Open

                                                              const EventName = 'sortbeforestop';

                                                      ConstantNamingConventions

                                                      Since: 0.2

                                                      Class/Interface constant names should always be defined in uppercase.

                                                      Example

                                                      class Foo {
                                                          const MY_NUM = 0; // ok
                                                          const myTest = ""; // fail
                                                      }

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

                                                      Constant EventName should be defined in uppercase
                                                      Open

                                                              const EventName = 'sortdeactivate';

                                                      ConstantNamingConventions

                                                      Since: 0.2

                                                      Class/Interface constant names should always be defined in uppercase.

                                                      Example

                                                      class Foo {
                                                          const MY_NUM = 0; // ok
                                                          const myTest = ""; // fail
                                                      }

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

                                                      The method Disable is not named in camelCase.
                                                      Open

                                                              public function Disable() {
                                                                  QApplication::ExecuteControlCommand($this->getJqControlId(), $this->getJqSetupFunction(), "disable", QJsPriority::Low);
                                                              }

                                                      CamelCaseMethodName

                                                      Since: 0.2

                                                      It is considered best practice to use the camelCase notation to name methods.

                                                      Example

                                                      class ClassName {
                                                          public function get_name() {
                                                          }
                                                      }

                                                      Source

                                                      The method GetEndScript is not named in camelCase.
                                                      Open

                                                              public function GetEndScript() {
                                                                  $strId = $this->GetJqControlId();
                                                                  $jqOptions = $this->makeJqOptions();
                                                                  $strFunc = $this->getJqSetupFunction();
                                                      
                                                      

                                                      CamelCaseMethodName

                                                      Since: 0.2

                                                      It is considered best practice to use the camelCase notation to name methods.

                                                      Example

                                                      class ClassName {
                                                          public function get_name() {
                                                          }
                                                      }

                                                      Source

                                                      The method Cancel is not named in camelCase.
                                                      Open

                                                              public function Cancel() {
                                                                  QApplication::ExecuteControlCommand($this->getJqControlId(), $this->getJqSetupFunction(), "cancel", QJsPriority::Low);
                                                              }

                                                      CamelCaseMethodName

                                                      Since: 0.2

                                                      It is considered best practice to use the camelCase notation to name methods.

                                                      Example

                                                      class ClassName {
                                                          public function get_name() {
                                                          }
                                                      }

                                                      Source

                                                      The method MakeJqOptions is not named in camelCase.
                                                      Open

                                                              protected function MakeJqOptions() {
                                                                  $jqOptions = null;
                                                                  if (!is_null($val = $this->AppendTo)) {$jqOptions['appendTo'] = $val;}
                                                                  if (!is_null($val = $this->Axis)) {$jqOptions['axis'] = $val;}
                                                                  if (!is_null($val = $this->Cancel)) {$jqOptions['cancel'] = $val;}

                                                      CamelCaseMethodName

                                                      Since: 0.2

                                                      It is considered best practice to use the camelCase notation to name methods.

                                                      Example

                                                      class ClassName {
                                                          public function get_name() {
                                                          }
                                                      }

                                                      Source

                                                      The method Destroy is not named in camelCase.
                                                      Open

                                                              public function Destroy() {
                                                                  QApplication::ExecuteControlCommand($this->getJqControlId(), $this->getJqSetupFunction(), "destroy", QJsPriority::Low);
                                                              }

                                                      CamelCaseMethodName

                                                      Since: 0.2

                                                      It is considered best practice to use the camelCase notation to name methods.

                                                      Example

                                                      class ClassName {
                                                          public function get_name() {
                                                          }
                                                      }

                                                      Source

                                                      The method Enable is not named in camelCase.
                                                      Open

                                                              public function Enable() {
                                                                  QApplication::ExecuteControlCommand($this->getJqControlId(), $this->getJqSetupFunction(), "enable", QJsPriority::Low);
                                                              }

                                                      CamelCaseMethodName

                                                      Since: 0.2

                                                      It is considered best practice to use the camelCase notation to name methods.

                                                      Example

                                                      class ClassName {
                                                          public function get_name() {
                                                          }
                                                      }

                                                      Source

                                                      The method GetJqSetupFunction is not named in camelCase.
                                                      Open

                                                              public function GetJqSetupFunction() {
                                                                  return 'sortable';
                                                              }

                                                      CamelCaseMethodName

                                                      Since: 0.2

                                                      It is considered best practice to use the camelCase notation to name methods.

                                                      Example

                                                      class ClassName {
                                                          public function get_name() {
                                                          }
                                                      }

                                                      Source

                                                      The method ToArray is not named in camelCase.
                                                      Open

                                                              public function ToArray($options) {
                                                                  QApplication::ExecuteControlCommand($this->getJqControlId(), $this->getJqSetupFunction(), "toArray", $options, QJsPriority::Low);
                                                              }

                                                      CamelCaseMethodName

                                                      Since: 0.2

                                                      It is considered best practice to use the camelCase notation to name methods.

                                                      Example

                                                      class ClassName {
                                                          public function get_name() {
                                                          }
                                                      }

                                                      Source

                                                      The method Instance is not named in camelCase.
                                                      Open

                                                              public function Instance() {
                                                                  QApplication::ExecuteControlCommand($this->getJqControlId(), $this->getJqSetupFunction(), "instance", QJsPriority::Low);
                                                              }

                                                      CamelCaseMethodName

                                                      Since: 0.2

                                                      It is considered best practice to use the camelCase notation to name methods.

                                                      Example

                                                      class ClassName {
                                                          public function get_name() {
                                                          }
                                                      }

                                                      Source

                                                      The method Option1 is not named in camelCase.
                                                      Open

                                                              public function Option1() {
                                                                  QApplication::ExecuteControlCommand($this->getJqControlId(), $this->getJqSetupFunction(), "option", QJsPriority::Low);
                                                              }

                                                      CamelCaseMethodName

                                                      Since: 0.2

                                                      It is considered best practice to use the camelCase notation to name methods.

                                                      Example

                                                      class ClassName {
                                                          public function get_name() {
                                                          }
                                                      }

                                                      Source

                                                      The method Option is not named in camelCase.
                                                      Open

                                                              public function Option($optionName) {
                                                                  QApplication::ExecuteControlCommand($this->getJqControlId(), $this->getJqSetupFunction(), "option", $optionName, QJsPriority::Low);
                                                              }

                                                      CamelCaseMethodName

                                                      Since: 0.2

                                                      It is considered best practice to use the camelCase notation to name methods.

                                                      Example

                                                      class ClassName {
                                                          public function get_name() {
                                                          }
                                                      }

                                                      Source

                                                      The method Option3 is not named in camelCase.
                                                      Open

                                                              public function Option3($options) {
                                                                  QApplication::ExecuteControlCommand($this->getJqControlId(), $this->getJqSetupFunction(), "option", $options, QJsPriority::Low);
                                                              }

                                                      CamelCaseMethodName

                                                      Since: 0.2

                                                      It is considered best practice to use the camelCase notation to name methods.

                                                      Example

                                                      class ClassName {
                                                          public function get_name() {
                                                          }
                                                      }

                                                      Source

                                                      The method RefreshPositions is not named in camelCase.
                                                      Open

                                                              public function RefreshPositions() {
                                                                  QApplication::ExecuteControlCommand($this->getJqControlId(), $this->getJqSetupFunction(), "refreshPositions", QJsPriority::Low);
                                                              }

                                                      CamelCaseMethodName

                                                      Since: 0.2

                                                      It is considered best practice to use the camelCase notation to name methods.

                                                      Example

                                                      class ClassName {
                                                          public function get_name() {
                                                          }
                                                      }

                                                      Source

                                                      The method Option2 is not named in camelCase.
                                                      Open

                                                              public function Option2($optionName, $value) {
                                                                  QApplication::ExecuteControlCommand($this->getJqControlId(), $this->getJqSetupFunction(), "option", $optionName, $value, QJsPriority::Low);
                                                              }

                                                      CamelCaseMethodName

                                                      Since: 0.2

                                                      It is considered best practice to use the camelCase notation to name methods.

                                                      Example

                                                      class ClassName {
                                                          public function get_name() {
                                                          }
                                                      }

                                                      Source

                                                      The method Refresh is not named in camelCase.
                                                      Open

                                                              public function Refresh() {
                                                                  QApplication::ExecuteControlCommand($this->getJqControlId(), $this->getJqSetupFunction(), "refresh", QJsPriority::Low);
                                                              }

                                                      CamelCaseMethodName

                                                      Since: 0.2

                                                      It is considered best practice to use the camelCase notation to name methods.

                                                      Example

                                                      class ClassName {
                                                          public function get_name() {
                                                          }
                                                      }

                                                      Source

                                                      The method Serialize is not named in camelCase.
                                                      Open

                                                              public function Serialize($options) {
                                                                  QApplication::ExecuteControlCommand($this->getJqControlId(), $this->getJqSetupFunction(), "serialize", $options, QJsPriority::Low);
                                                              }

                                                      CamelCaseMethodName

                                                      Since: 0.2

                                                      It is considered best practice to use the camelCase notation to name methods.

                                                      Example

                                                      class ClassName {
                                                          public function get_name() {
                                                          }
                                                      }

                                                      Source

                                                      The method GetModelConnectorParams is not named in camelCase.
                                                      Open

                                                              public static function GetModelConnectorParams() {
                                                                  return array_merge(parent::GetModelConnectorParams(), array(
                                                                      new QModelConnectorParam (get_called_class(), 'Axis', 'If defined, the items can be dragged only horizontally or vertically.Possible values: \"x\", \"y\".', QType::String),
                                                                      new QModelConnectorParam (get_called_class(), 'Cursor', 'Defines the cursor that is being shown while sorting.', QType::String),
                                                                      new QModelConnectorParam (get_called_class(), 'Delay', 'Time in milliseconds to define when the sorting should start. Adding adelay helps preventing unwanted drags when clicking on an element.', QType::Integer),

                                                      CamelCaseMethodName

                                                      Since: 0.2

                                                      It is considered best practice to use the camelCase notation to name methods.

                                                      Example

                                                      class ClassName {
                                                          public function get_name() {
                                                          }
                                                      }

                                                      Source

                                                      There are no issues that match your filters.

                                                      Category
                                                      Status