XoopsModules25x/userlog

View on GitHub
class/stats.php

Summary

Maintainability
F
4 days
Test Coverage

File stats.php has 367 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
/*
 You may not change or alter any portion of this comment or credits
 of supporting developers from this source code or any supporting source code
 which is considered copyrighted (c) material of the original comment or credit authors.
Severity: Minor
Found in class/stats.php - About 4 hrs to fix

    Function updateAll has a Cognitive Complexity of 32 (exceeds 5 allowed). Consider refactoring.
    Open

        public function updateAll($type = 'log', $prob = 11)
        {
            if (!$this->userlog->probCheck($prob)) {
                return false;
            }
    Severity: Minor
    Found in class/stats.php - About 4 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Method updateAll has 93 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function updateAll($type = 'log', $prob = 11)
        {
            if (!$this->userlog->probCheck($prob)) {
                return false;
            }
    Severity: Major
    Found in class/stats.php - About 3 hrs to fix

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

      class UserlogStats extends XoopsObject
      {
          /**
           * @var string
           */
      Severity: Minor
      Found in class/stats.php by phpmd

      Function insertUpdate has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
      Open

          public function insertUpdate($object, $duplicate = [], $force = true)
          {
              $handler = $this->loadHandler('write');
      
              if (!$object->isDirty()) {
      Severity: Minor
      Found in class/stats.php - About 2 hrs to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Method insertUpdate has 45 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function insertUpdate($object, $duplicate = [], $force = true)
          {
              $handler = $this->loadHandler('write');
      
              if (!$object->isDirty()) {
      Severity: Minor
      Found in class/stats.php - About 1 hr to fix

        Method getAll has 32 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function getAll(
                $type = [],
                $start = 0,
                $limit = 0,
                $sort = 'stats_value',
        Severity: Minor
        Found in class/stats.php - About 1 hr to fix

          Function getAll has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
          Open

              public function getAll(
                  $type = [],
                  $start = 0,
                  $limit = 0,
                  $sort = 'stats_value',
          Severity: Minor
          Found in class/stats.php - About 1 hr to fix

          Cognitive Complexity

          Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

          A method's cognitive complexity is based on a few simple rules:

          • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
          • Code is considered more complex for each "break in the linear flow of the code"
          • Code is considered more complex when "flow breaking structures are nested"

          Further reading

          Function delete has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
          Open

              public function delete($type = 'log', $period = 0, $limitDel = 0, $criteria = null, $asObject = false)
              {
                  switch ($type) {
                      case 'log':
                          if ($asObject) {
          Severity: Minor
          Found in class/stats.php - About 45 mins to fix

          Cognitive Complexity

          Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

          A method's cognitive complexity is based on a few simple rules:

          • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
          • Code is considered more complex for each "break in the linear flow of the code"
          • Code is considered more complex when "flow breaking structures are nested"

          Further reading

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

                  $type = [],
                  $start = 0,
                  $limit = 0,
                  $sort = 'stats_value',
                  $order = 'DESC',
          Severity: Minor
          Found in class/stats.php - About 45 mins to fix

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

                public function update($type = 'log', $period = 0, $value = null, $increment = false, $link = '')
            Severity: Minor
            Found in class/stats.php - About 35 mins to fix

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

                  public function delete($type = 'log', $period = 0, $limitDel = 0, $criteria = null, $asObject = false)
              Severity: Minor
              Found in class/stats.php - About 35 mins to fix

                Avoid too many return statements within this method.
                Open

                                return false;
                Severity: Major
                Found in class/stats.php - About 30 mins to fix

                  Avoid too many return statements within this method.
                  Open

                          return true;
                  Severity: Major
                  Found in class/stats.php - About 30 mins to fix

                    Avoid too many return statements within this method.
                    Open

                            return $object->getVar($this->keyName);
                    Severity: Major
                    Found in class/stats.php - About 30 mins to fix

                      The method updateAll() has an NPath complexity of 314. The configured NPath complexity threshold is 200.
                      Open

                          public function updateAll($type = 'log', $prob = 11)
                          {
                              if (!$this->userlog->probCheck($prob)) {
                                  return false;
                              }
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      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 getAll() has an NPath complexity of 260. The configured NPath complexity threshold is 200.
                      Open

                          public function getAll(
                              $type = [],
                              $start = 0,
                              $limit = 0,
                              $sort = 'stats_value',
                      Severity: Minor
                      Found in class/stats.php by phpmd

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

                          public function updateAll($type = 'log', $prob = 11)
                          {
                              if (!$this->userlog->probCheck($prob)) {
                                  return false;
                              }
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      The method insertUpdate() has an NPath complexity of 328. The configured NPath complexity threshold is 200.
                      Open

                          public function insertUpdate($object, $duplicate = [], $force = true)
                          {
                              $handler = $this->loadHandler('write');
                      
                              if (!$object->isDirty()) {
                      Severity: Minor
                      Found in class/stats.php by phpmd

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

                          public function insertUpdate($object, $duplicate = [], $force = true)
                          {
                              $handler = $this->loadHandler('write');
                      
                              if (!$object->isDirty()) {
                      Severity: Minor
                      Found in class/stats.php by phpmd

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

                          public function getAll(
                              $type = [],
                              $start = 0,
                              $limit = 0,
                              $sort = 'stats_value',
                      Severity: Minor
                      Found in class/stats.php by phpmd

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

                          public function updateAll($type = 'log', $prob = 11)
                          {
                              if (!$this->userlog->probCheck($prob)) {
                                  return false;
                              }
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      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

                      Avoid using undefined variables such as '$ret' which will lead to PHP notices.
                      Open

                                  $ret[$index1][$index2]['time_update'] = $sObj->time_update();
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      UndefinedVariable

                      Since: 2.8.0

                      Detects when a variable is used that has not been defined before.

                      Example

                      class Foo
                      {
                          private function bar()
                          {
                              // $message is undefined
                              echo $message;
                          }
                      }

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

                      Avoid using undefined variables such as '$ret' which will lead to PHP notices.
                      Open

                                      $ret[$index1] = [];
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      UndefinedVariable

                      Since: 2.8.0

                      Detects when a variable is used that has not been defined before.

                      Example

                      class Foo
                      {
                          private function bar()
                          {
                              // $message is undefined
                              echo $message;
                          }
                      }

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

                      Avoid using undefined variables such as '$ret' which will lead to PHP notices.
                      Open

                                      $ret[$index1][$index2] = [];
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      UndefinedVariable

                      Since: 2.8.0

                      Detects when a variable is used that has not been defined before.

                      Example

                      class Foo
                      {
                          private function bar()
                          {
                              // $message is undefined
                              echo $message;
                          }
                      }

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

                      Avoid using undefined variables such as '$ret' which will lead to PHP notices.
                      Open

                              return $ret;
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      UndefinedVariable

                      Since: 2.8.0

                      Detects when a variable is used that has not been defined before.

                      Example

                      class Foo
                      {
                          private function bar()
                          {
                              // $message is undefined
                              echo $message;
                          }
                      }

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

                      Avoid using undefined variables such as '$ret' which will lead to PHP notices.
                      Open

                                  if (!isset($ret[$index1])) {
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      UndefinedVariable

                      Since: 2.8.0

                      Detects when a variable is used that has not been defined before.

                      Example

                      class Foo
                      {
                          private function bar()
                          {
                              // $message is undefined
                              echo $message;
                          }
                      }

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

                      Avoid using undefined variables such as '$ret' which will lead to PHP notices.
                      Open

                                  if (!isset($ret[$index1][$index2])) {
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      UndefinedVariable

                      Since: 2.8.0

                      Detects when a variable is used that has not been defined before.

                      Example

                      class Foo
                      {
                          private function bar()
                          {
                              // $message is undefined
                              echo $message;
                          }
                      }

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

                      Avoid using undefined variables such as '$ret' which will lead to PHP notices.
                      Open

                                  $ret[$index1][$index2]['value']       = $sObj->stats_value();
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      UndefinedVariable

                      Since: 2.8.0

                      Detects when a variable is used that has not been defined before.

                      Example

                      class Foo
                      {
                          private function bar()
                          {
                              // $message is undefined
                              echo $message;
                          }
                      }

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

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

                                      $criteriaTypes->add(new Criteria('stats_type', $type, '='), 'OR');
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      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 '119', column '36').
                      Open

                                      $criteria->add(new Criteria('stats_type', $tt), 'OR');
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      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 '361', column '29').
                      Open

                              $criteriaTime = new CriteriaCompo();
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      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 '351', column '28').
                      Open

                              $criteriaDel = new CriteriaCompo();
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      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 '354', column '34').
                      Open

                                  $criteriaTypes = new CriteriaCompo();
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      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 '182', column '40').
                      Open

                                          $criteriaDel = new CriteriaCompo();
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      MissingImport

                      Since: 2.7.0

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

                      Example

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

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

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

                          public function insertUpdate($object, $duplicate = [], $force = true)
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      BooleanArgumentFlag

                      Since: 1.4.0

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

                      Example

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

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

                      Missing class import via use statement (line '188', column '37').
                      Open

                                          $criteria = new CriteriaCompo();
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      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 '206', column '36').
                      Open

                                      $criteria->add(new Criteria('referer', XOOPS_URL . '%', 'NOT LIKE'));
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      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 '227', column '33').
                      Open

                                      $criteria = new CriteriaCompo();
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      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 '184', column '43').
                      Open

                                          $criteriaDel->add(new Criteria('log_time', $until, '<'), 'AND');
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      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 '115', column '25').
                      Open

                              $criteria = new CriteriaCompo();
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      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 '205', column '33').
                      Open

                                      $criteria = new CriteriaCompo();
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      MissingImport

                      Since: 2.7.0

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

                      Example

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

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

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

                          public function delete($type = 'log', $period = 0, $limitDel = 0, $criteria = null, $asObject = false)
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      BooleanArgumentFlag

                      Since: 1.4.0

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

                      Example

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

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

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

                          public function update($type = 'log', $period = 0, $value = null, $increment = false, $link = '')
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      BooleanArgumentFlag

                      Since: 1.4.0

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

                      Example

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

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

                      Missing class import via use statement (line '192', column '44').
                      Open

                                              $criteria->add(new Criteria('log_time', time() - $since, '>'), 'AND');
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      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 '362', column '32').
                      Open

                              $criteriaTime->add(new Criteria('time_update', $until, '<'), 'AND');
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      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 '441', column '18').
                      Open

                          public function insertUpdate($object, $duplicate = [], $force = true)
                          {
                              $handler = $this->loadHandler('write');
                      
                              if (!$object->isDirty()) {
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      IfStatementAssignment

                      Since: 2.7.0

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

                      Example

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

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

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

                          public function insertUpdate($object, $duplicate = [], $force = true)
                          {
                              $handler = $this->loadHandler('write');
                      
                              if (!$object->isDirty()) {
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      IfStatementAssignment

                      Since: 2.7.0

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

                      Example

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

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

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

                          public function insertUpdate($object, $duplicate = [], $force = true)
                          {
                              $handler = $this->loadHandler('write');
                      
                              if (!$object->isDirty()) {
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      IfStatementAssignment

                      Since: 2.7.0

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

                      Example

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

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

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

                                  } else {
                                      trigger_error("Data entry is not inserted - no variable is changed in object of '" . get_class($object) . "' with errors: " . implode(', ', $object->getErrors()), E_USER_NOTICE);
                      
                                      return $object->getVar($this->keyName);
                                  }
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      ElseExpression

                      Since: 1.4.0

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

                      Example

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

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

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

                          public function dropIndex($index = null)
                          {
                              if (empty($index)) {
                                  return false;
                              }
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      IfStatementAssignment

                      Since: 2.7.0

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

                      Example

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

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

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

                          public function addIndex($index = null, $fields = [], $index_type = 'INDEX')
                          {
                              if (empty($index) || empty($fields)) {
                                  return false;
                              }
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      IfStatementAssignment

                      Since: 2.7.0

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

                      Example

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

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

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

                          public function showIndex($index = null)
                          {
                              $sql = "SHOW INDEX FROM {$this->table}";
                              if (isset($index)) {
                                  $sql .= " WHERE KEY_NAME = '{$index}'";
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      IfStatementAssignment

                      Since: 2.7.0

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

                      Example

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

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

                      Avoid using static access to class 'Userlog' in method '__construct'.
                      Open

                              $this->userlog = Userlog::getInstance();
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      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 'Userlog' in method '__construct'.
                      Open

                              $this->userlog = Userlog::getInstance();
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      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 unused local variables such as '$result'.
                      Open

                              if (!$result = $this->db->queryF($sql)) {
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      UnusedLocalVariable

                      Since: 0.2

                      Detects when a local variable is declared and/or assigned, but not used.

                      Example

                      class Foo {
                          public function doSomething()
                          {
                              $i = 5; // Unused
                          }
                      }

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

                      Avoid unused local variables such as '$numDelPeriod'.
                      Open

                                          $numDelPeriod = $this->delete('log', 0, 0, $criteriaDel); // all time = maxlogsperiod
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      UnusedLocalVariable

                      Since: 0.2

                      Detects when a local variable is declared and/or assigned, but not used.

                      Example

                      class Foo {
                          public function doSomething()
                          {
                              $i = 5; // Unused
                          }
                      }

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

                      Avoid unused local variables such as '$result'.
                      Open

                              if (!$result = $this->db->queryF($sql)) {
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      UnusedLocalVariable

                      Since: 0.2

                      Detects when a local variable is declared and/or assigned, but not used.

                      Example

                      class Foo {
                          public function doSomething()
                          {
                              $i = 5; // Unused
                          }
                      }

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

                      Avoid unused local variables such as '$result'.
                      Open

                                  if (!$result = $this->db->{$queryFunc}($sql)) {
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      UnusedLocalVariable

                      Since: 0.2

                      Detects when a local variable is declared and/or assigned, but not used.

                      Example

                      class Foo {
                          public function doSomething()
                          {
                              $i = 5; // Unused
                          }
                      }

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

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

                          public function addIndex($index = null, $fields = [], $index_type = 'INDEX')
                          {
                              if (empty($index) || empty($fields)) {
                                  return false;
                              }
                      Severity: Major
                      Found in class/stats.php and 1 other location - About 6 hrs to fix
                      class/log.php on lines 1336..1357

                      Duplicated Code

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

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

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

                      Tuning

                      This issue has a mass of 215.

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

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

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

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

                      Refactorings

                      Further Reading

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

                          public function dropIndex($index = null)
                          {
                              if (empty($index)) {
                                  return false;
                              }
                      Severity: Major
                      Found in class/stats.php and 2 other locations - About 1 hr to fix
                      class/log.php on lines 1277..1293
                      class/log.php on lines 1369..1385

                      Duplicated Code

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

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

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

                      Tuning

                      This issue has a mass of 113.

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

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

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

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

                      Refactorings

                      Further Reading

                      Each class must be in a namespace of at least one level (a top-level vendor name)
                      Open

                      class UserlogStats extends XoopsObject
                      Severity: Minor
                      Found in class/stats.php by phpcodesniffer

                      Each class must be in a namespace of at least one level (a top-level vendor name)
                      Open

                      class UserlogStatsHandler extends XoopsPersistableObjectHandler
                      Severity: Minor
                      Found in class/stats.php by phpcodesniffer

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

                          public function __construct(XoopsDatabase $db)
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      ShortVariable

                      Since: 0.2

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

                      Example

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

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

                      The parameter $index_type is not named in camelCase.
                      Open

                          public function changeIndex($index = null, $fields = [], $index_type = 'INDEX')
                          {
                              if ($this->showIndex($index) && !$this->dropIndex($index)) {
                                  return false;
                              } // if index is exist but cannot drop it
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      CamelCaseParameterName

                      Since: 0.2

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

                      Example

                      class ClassName {
                          public function doSomething($user_name) {
                          }
                      }

                      Source

                      The parameter $index_type is not named in camelCase.
                      Open

                          public function addIndex($index = null, $fields = [], $index_type = 'INDEX')
                          {
                              if (empty($index) || empty($fields)) {
                                  return false;
                              }
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      CamelCaseParameterName

                      Since: 0.2

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

                      Example

                      class ClassName {
                          public function doSomething($user_name) {
                          }
                      }

                      Source

                      A file should declare new symbols (classes, functions, constants, etc.) and cause no other side effects, or it should execute logic with side effects, but should not do both. The first symbol is defined on line 29 and the first side effect is on line 22.
                      Open

                      <?php
                      Severity: Minor
                      Found in class/stats.php by phpcodesniffer

                      Each class must be in a file by itself
                      Open

                      class UserlogStatsHandler extends XoopsPersistableObjectHandler
                      Severity: Minor
                      Found in class/stats.php by phpcodesniffer

                      Method name "UserlogStats::time_update" is not in camel caps format
                      Open

                          public function time_update()
                      Severity: Minor
                      Found in class/stats.php by phpcodesniffer

                      Line exceeds 120 characters; contains 150 characters
                      Open

                              return $this->userlog->getHandler('stats')->deleteAll($criteriaDel); // function deleteAll($criteria = null, $force = true, $asObject = false)
                      Severity: Minor
                      Found in class/stats.php by phpcodesniffer

                      Line exceeds 120 characters; contains 172 characters
                      Open

                                  trigger_error("Insert failed in method 'cleanVars' of object '" . get_class($object) . "' with errors: " . implode(', ', $object->getErrors()), E_USER_WARNING);
                      Severity: Minor
                      Found in class/stats.php by phpcodesniffer

                      Line exceeds 120 characters; contains 185 characters
                      Open

                                  trigger_error("Data entry is not inserted - the object '" . get_class($object) . "' is not dirty," . "' with errors: " . implode(', ', $object->getErrors()), E_USER_NOTICE);
                      Severity: Minor
                      Found in class/stats.php by phpcodesniffer

                      Line exceeds 120 characters; contains 149 characters
                      Open

                           * @param int   $expire - delete all records exist in the table before expire time - positive for days and negatice for hours - 0 = never expired
                      Severity: Minor
                      Found in class/stats.php by phpcodesniffer

                      Line exceeds 120 characters; contains 122 characters
                      Open

                                          $this->update('file', 0, count($files), false, $log_file); // update working file in all paths (now 2)
                      Severity: Minor
                      Found in class/stats.php by phpcodesniffer

                      Line exceeds 120 characters; contains 194 characters
                      Open

                                      trigger_error("Data entry is not inserted - no variable is changed in object of '" . get_class($object) . "' with errors: " . implode(', ', $object->getErrors()), E_USER_NOTICE);
                      Severity: Minor
                      Found in class/stats.php by phpcodesniffer

                      Line exceeds 120 characters; contains 157 characters
                      Open

                                          $browserParent = !empty($browserArr['Parent']) ? (!empty($browserArr['Crawler']) ? 'crawler: ' : '') . $browserArr['Parent'] : 'unknown';
                      Severity: Minor
                      Found in class/stats.php by phpcodesniffer

                      Line exceeds 120 characters; contains 206 characters
                      Open

                           * @internal param array $ret = Table    Non_unique    Key_name    Seq_in_index    Column_name        Collation    Cardinality        Sub_part    Packed    Null    Index_type    Comment    Index_comment
                      Severity: Minor
                      Found in class/stats.php by phpcodesniffer

                      Line exceeds 120 characters; contains 169 characters
                      Open

                                  $sql = 'UPDATE `' . $this->table . '` SET ' . implode(',', $keys) . ' WHERE `' . $this->keyName . '` = ' . $this->db->quote($object->getVar($this->keyName));
                      Severity: Minor
                      Found in class/stats.php by phpcodesniffer

                      The variable $index_type is not named in camelCase.
                      Open

                          public function addIndex($index = null, $fields = [], $index_type = 'INDEX')
                          {
                              if (empty($index) || empty($fields)) {
                                  return false;
                              }
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      CamelCaseVariableName

                      Since: 0.2

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

                      Example

                      class ClassName {
                          public function doSomething() {
                              $data_module = new DataModule();
                          }
                      }

                      Source

                      The variable $OSes is not named in camelCase.
                      Open

                          public function updateAll($type = 'log', $prob = 11)
                          {
                              if (!$this->userlog->probCheck($prob)) {
                                  return false;
                              }
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      CamelCaseVariableName

                      Since: 0.2

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

                      Example

                      class ClassName {
                          public function doSomething() {
                              $data_module = new DataModule();
                          }
                      }

                      Source

                      The variable $OSes is not named in camelCase.
                      Open

                          public function updateAll($type = 'log', $prob = 11)
                          {
                              if (!$this->userlog->probCheck($prob)) {
                                  return false;
                              }
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      CamelCaseVariableName

                      Since: 0.2

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

                      Example

                      class ClassName {
                          public function doSomething() {
                              $data_module = new DataModule();
                          }
                      }

                      Source

                      The variable $object_id is not named in camelCase.
                      Open

                          public function insertUpdate($object, $duplicate = [], $force = true)
                          {
                              $handler = $this->loadHandler('write');
                      
                              if (!$object->isDirty()) {
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      CamelCaseVariableName

                      Since: 0.2

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

                      Example

                      class ClassName {
                          public function doSomething() {
                              $data_module = new DataModule();
                          }
                      }

                      Source

                      The variable $index_type is not named in camelCase.
                      Open

                          public function addIndex($index = null, $fields = [], $index_type = 'INDEX')
                          {
                              if (empty($index) || empty($fields)) {
                                  return false;
                              }
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      CamelCaseVariableName

                      Since: 0.2

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

                      Example

                      class ClassName {
                          public function doSomething() {
                              $data_module = new DataModule();
                          }
                      }

                      Source

                      The variable $index_type is not named in camelCase.
                      Open

                          public function addIndex($index = null, $fields = [], $index_type = 'INDEX')
                          {
                              if (empty($index) || empty($fields)) {
                                  return false;
                              }
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      CamelCaseVariableName

                      Since: 0.2

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

                      Example

                      class ClassName {
                          public function doSomething() {
                              $data_module = new DataModule();
                          }
                      }

                      Source

                      The variable $object_id is not named in camelCase.
                      Open

                          public function insertUpdate($object, $duplicate = [], $force = true)
                          {
                              $handler = $this->loadHandler('write');
                      
                              if (!$object->isDirty()) {
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      CamelCaseVariableName

                      Since: 0.2

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

                      Example

                      class ClassName {
                          public function doSomething() {
                              $data_module = new DataModule();
                          }
                      }

                      Source

                      The variable $index_type is not named in camelCase.
                      Open

                          public function changeIndex($index = null, $fields = [], $index_type = 'INDEX')
                          {
                              if ($this->showIndex($index) && !$this->dropIndex($index)) {
                                  return false;
                              } // if index is exist but cannot drop it
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      CamelCaseVariableName

                      Since: 0.2

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

                      Example

                      class ClassName {
                          public function doSomething() {
                              $data_module = new DataModule();
                          }
                      }

                      Source

                      The variable $log_file is not named in camelCase.
                      Open

                          public function updateAll($type = 'log', $prob = 11)
                          {
                              if (!$this->userlog->probCheck($prob)) {
                                  return false;
                              }
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      CamelCaseVariableName

                      Since: 0.2

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

                      Example

                      class ClassName {
                          public function doSomething() {
                              $data_module = new DataModule();
                          }
                      }

                      Source

                      The variable $OS is not named in camelCase.
                      Open

                          public function updateAll($type = 'log', $prob = 11)
                          {
                              if (!$this->userlog->probCheck($prob)) {
                                  return false;
                              }
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      CamelCaseVariableName

                      Since: 0.2

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

                      Example

                      class ClassName {
                          public function doSomething() {
                              $data_module = new DataModule();
                          }
                      }

                      Source

                      The variable $OS is not named in camelCase.
                      Open

                          public function updateAll($type = 'log', $prob = 11)
                          {
                              if (!$this->userlog->probCheck($prob)) {
                                  return false;
                              }
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      CamelCaseVariableName

                      Since: 0.2

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

                      Example

                      class ClassName {
                          public function doSomething() {
                              $data_module = new DataModule();
                          }
                      }

                      Source

                      The variable $index_type is not named in camelCase.
                      Open

                          public function addIndex($index = null, $fields = [], $index_type = 'INDEX')
                          {
                              if (empty($index) || empty($fields)) {
                                  return false;
                              }
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      CamelCaseVariableName

                      Since: 0.2

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

                      Example

                      class ClassName {
                          public function doSomething() {
                              $data_module = new DataModule();
                          }
                      }

                      Source

                      The variable $OSes is not named in camelCase.
                      Open

                          public function updateAll($type = 'log', $prob = 11)
                          {
                              if (!$this->userlog->probCheck($prob)) {
                                  return false;
                              }
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      CamelCaseVariableName

                      Since: 0.2

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

                      Example

                      class ClassName {
                          public function doSomething() {
                              $data_module = new DataModule();
                          }
                      }

                      Source

                      The variable $log_file is not named in camelCase.
                      Open

                          public function updateAll($type = 'log', $prob = 11)
                          {
                              if (!$this->userlog->probCheck($prob)) {
                                  return false;
                              }
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      CamelCaseVariableName

                      Since: 0.2

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

                      Example

                      class ClassName {
                          public function doSomething() {
                              $data_module = new DataModule();
                          }
                      }

                      Source

                      The variable $OSes is not named in camelCase.
                      Open

                          public function updateAll($type = 'log', $prob = 11)
                          {
                              if (!$this->userlog->probCheck($prob)) {
                                  return false;
                              }
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      CamelCaseVariableName

                      Since: 0.2

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

                      Example

                      class ClassName {
                          public function doSomething() {
                              $data_module = new DataModule();
                          }
                      }

                      Source

                      The variable $OSes is not named in camelCase.
                      Open

                          public function updateAll($type = 'log', $prob = 11)
                          {
                              if (!$this->userlog->probCheck($prob)) {
                                  return false;
                              }
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      CamelCaseVariableName

                      Since: 0.2

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

                      Example

                      class ClassName {
                          public function doSomething() {
                              $data_module = new DataModule();
                          }
                      }

                      Source

                      The method time_update is not named in camelCase.
                      Open

                          public function time_update()
                          {
                              return $this->userlog->formatTime($this->getVar('time_update'));
                          }
                      Severity: Minor
                      Found in class/stats.php by phpmd

                      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