mambax7/extgallery

View on GitHub
class/pear/PEAR.php

Summary

Maintainability
F
5 days
Test Coverage

The method __construct() contains an eval expression.
Open

            eval('$e = new Exception($this->message, $this->code);throw($e);');
Severity: Minor
Found in class/pear/PEAR.php by phpmd

EvalExpression

Since: 0.2

An eval-expression is untestable, a security risk and bad practice. Therefore it should be avoided. Consider to replace the eval-expression with regular code.

Example

class Foo {
    public function bar($param)  {
        if ($param === 42) {
            eval('$param = 23;');
        }
    }
}

Source https://phpmd.org/rules/design.html#evalexpression

_raiseError accesses the super-global variable $GLOBALS.
Open

    protected static function _raiseError(
        $object,
        $message = null,
        $code = null,
        $mode = null,
Severity: Minor
Found in class/pear/PEAR.php by phpmd

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

staticPopErrorHandling accesses the super-global variable $GLOBALS.
Open

    public static function staticPopErrorHandling()
    {
        $stack      = &$GLOBALS['_PEAR_error_handler_stack'];
        $setmode    = &$GLOBALS['_PEAR_default_error_mode'];
        $setoptions = &$GLOBALS['_PEAR_default_error_options'];
Severity: Minor
Found in class/pear/PEAR.php by phpmd

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

__construct accesses the super-global variable $GLOBALS.
Open

    public function __construct($error_class = null)
    {
        $classname = strtolower(get_class($this));
        if ($this->_debug) {
            print "PEAR constructor called, class=$classname\n";
Severity: Minor
Found in class/pear/PEAR.php by phpmd

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

staticPopErrorHandling accesses the super-global variable $GLOBALS.
Open

    public static function staticPopErrorHandling()
    {
        $stack      = &$GLOBALS['_PEAR_error_handler_stack'];
        $setmode    = &$GLOBALS['_PEAR_default_error_mode'];
        $setoptions = &$GLOBALS['_PEAR_default_error_options'];
Severity: Minor
Found in class/pear/PEAR.php by phpmd

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

_pushErrorHandling accesses the super-global variable $GLOBALS.
Open

    protected static function _pushErrorHandling($object, $mode, $options = null)
    {
        $stack = &$GLOBALS['_PEAR_error_handler_stack'];
        if (null !== $object) {
            $def_mode    = &$object->_default_error_mode;
Severity: Minor
Found in class/pear/PEAR.php by phpmd

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

registerShutdownFunc accesses the super-global variable $GLOBALS.
Open

    public static function registerShutdownFunc($func, $args = [])
    {
        // if we are called statically, there is a potential
        // that no shutdown func is registered.  Bug #6445
        if (!isset($GLOBALS['_PEAR_SHUTDOWN_REGISTERED'])) {
Severity: Minor
Found in class/pear/PEAR.php by phpmd

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

_pushErrorHandling accesses the super-global variable $GLOBALS.
Open

    protected static function _pushErrorHandling($object, $mode, $options = null)
    {
        $stack = &$GLOBALS['_PEAR_error_handler_stack'];
        if (null !== $object) {
            $def_mode    = &$object->_default_error_mode;
Severity: Minor
Found in class/pear/PEAR.php by phpmd

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

__construct accesses the super-global variable $GLOBALS.
Open

    public function __construct($error_class = null)
    {
        $classname = strtolower(get_class($this));
        if ($this->_debug) {
            print "PEAR constructor called, class=$classname\n";
Severity: Minor
Found in class/pear/PEAR.php by phpmd

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

staticPopErrorHandling accesses the super-global variable $GLOBALS.
Open

    public static function staticPopErrorHandling()
    {
        $stack      = &$GLOBALS['_PEAR_error_handler_stack'];
        $setmode    = &$GLOBALS['_PEAR_default_error_mode'];
        $setoptions = &$GLOBALS['_PEAR_default_error_options'];
Severity: Minor
Found in class/pear/PEAR.php by phpmd

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

_pushErrorHandling accesses the super-global variable $GLOBALS.
Open

    protected static function _pushErrorHandling($object, $mode, $options = null)
    {
        $stack = &$GLOBALS['_PEAR_error_handler_stack'];
        if (null !== $object) {
            $def_mode    = &$object->_default_error_mode;
Severity: Minor
Found in class/pear/PEAR.php by phpmd

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

_raiseError accesses the super-global variable $GLOBALS.
Open

    protected static function _raiseError(
        $object,
        $message = null,
        $code = null,
        $mode = null,
Severity: Minor
Found in class/pear/PEAR.php by phpmd

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

registerShutdownFunc accesses the super-global variable $GLOBALS.
Open

    public static function registerShutdownFunc($func, $args = [])
    {
        // if we are called statically, there is a potential
        // that no shutdown func is registered.  Bug #6445
        if (!isset($GLOBALS['_PEAR_SHUTDOWN_REGISTERED'])) {
Severity: Minor
Found in class/pear/PEAR.php by phpmd

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

_setErrorHandling accesses the super-global variable $GLOBALS.
Open

    protected static function _setErrorHandling(
        $object,
        $mode = null,
        $options = null
    ) {
Severity: Minor
Found in class/pear/PEAR.php by phpmd

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

staticPushErrorHandling accesses the super-global variable $GLOBALS.
Open

    public static function staticPushErrorHandling($mode, $options = null)
    {
        $stack       = &$GLOBALS['_PEAR_error_handler_stack'];
        $def_mode    = &$GLOBALS['_PEAR_default_error_mode'];
        $def_options = &$GLOBALS['_PEAR_default_error_options'];
Severity: Minor
Found in class/pear/PEAR.php by phpmd

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

staticPushErrorHandling accesses the super-global variable $GLOBALS.
Open

    public static function staticPushErrorHandling($mode, $options = null)
    {
        $stack       = &$GLOBALS['_PEAR_error_handler_stack'];
        $def_mode    = &$GLOBALS['_PEAR_default_error_mode'];
        $def_options = &$GLOBALS['_PEAR_default_error_options'];
Severity: Minor
Found in class/pear/PEAR.php by phpmd

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

_setErrorHandling accesses the super-global variable $GLOBALS.
Open

    protected static function _setErrorHandling(
        $object,
        $mode = null,
        $options = null
    ) {
Severity: Minor
Found in class/pear/PEAR.php by phpmd

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

_raiseError accesses the super-global variable $GLOBALS.
Open

    protected static function _raiseError(
        $object,
        $message = null,
        $code = null,
        $mode = null,
Severity: Minor
Found in class/pear/PEAR.php by phpmd

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

staticPushErrorHandling accesses the super-global variable $GLOBALS.
Open

    public static function staticPushErrorHandling($mode, $options = null)
    {
        $stack       = &$GLOBALS['_PEAR_error_handler_stack'];
        $def_mode    = &$GLOBALS['_PEAR_default_error_mode'];
        $def_options = &$GLOBALS['_PEAR_default_error_options'];
Severity: Minor
Found in class/pear/PEAR.php by phpmd

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

registerShutdownFunc accesses the super-global variable $GLOBALS.
Open

    public static function registerShutdownFunc($func, $args = [])
    {
        // if we are called statically, there is a potential
        // that no shutdown func is registered.  Bug #6445
        if (!isset($GLOBALS['_PEAR_SHUTDOWN_REGISTERED'])) {
Severity: Minor
Found in class/pear/PEAR.php by phpmd

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

_PEAR_call_destructors accesses the super-global variable $GLOBALS.
Open

function _PEAR_call_destructors()
{
    global $_PEAR_destructor_object_list;
    if (is_array($_PEAR_destructor_object_list)
        && count($_PEAR_destructor_object_list)) {
Severity: Minor
Found in class/pear/PEAR.php by phpmd

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

_PEAR_call_destructors accesses the super-global variable $GLOBALS.
Open

function _PEAR_call_destructors()
{
    global $_PEAR_destructor_object_list;
    if (is_array($_PEAR_destructor_object_list)
        && count($_PEAR_destructor_object_list)) {
Severity: Minor
Found in class/pear/PEAR.php by phpmd

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

_PEAR_call_destructors accesses the super-global variable $GLOBALS.
Open

function _PEAR_call_destructors()
{
    global $_PEAR_destructor_object_list;
    if (is_array($_PEAR_destructor_object_list)
        && count($_PEAR_destructor_object_list)) {
Severity: Minor
Found in class/pear/PEAR.php by phpmd

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

_PEAR_call_destructors accesses the super-global variable $GLOBALS.
Open

function _PEAR_call_destructors()
{
    global $_PEAR_destructor_object_list;
    if (is_array($_PEAR_destructor_object_list)
        && count($_PEAR_destructor_object_list)) {
Severity: Minor
Found in class/pear/PEAR.php by phpmd

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

_popErrorHandling accesses the super-global variable $GLOBALS.
Open

    protected static function _popErrorHandling($object)
    {
        $stack = &$GLOBALS['_PEAR_error_handler_stack'];
        array_pop($stack);
        [$mode, $options] = $stack[count($stack) - 1];
Severity: Minor
Found in class/pear/PEAR.php by phpmd

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

File PEAR.php has 607 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
/**
 * PEAR, the PHP Extension and Application Repository
 *
 * PEAR class and PEAR_Error class
Severity: Major
Found in class/pear/PEAR.php - About 1 day to fix

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

        public function __construct(
            $message = 'unknown error',
            $code = null,
            $mode = null,
            $options = null,
    Severity: Minor
    Found in class/pear/PEAR.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 PEAR has 13 public methods. Consider refactoring PEAR to keep number of public methods under 10.
    Open

    class PEAR
    {
        /**
         * Whether to enable internal debug messages.
         *
    Severity: Minor
    Found in class/pear/PEAR.php by phpmd

    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 PEAR has an overall complexity of 104 which is very high. The configured complexity threshold is 50.
    Open

    class PEAR
    {
        /**
         * Whether to enable internal debug messages.
         *
    Severity: Minor
    Found in class/pear/PEAR.php by phpmd

    Function _raiseError has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
    Open

        protected static function _raiseError(
            $object,
            $message = null,
            $code = null,
            $mode = null,
    Severity: Minor
    Found in class/pear/PEAR.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

    Function _PEAR_call_destructors has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
    Open

    function _PEAR_call_destructors()
    {
        global $_PEAR_destructor_object_list;
        if (is_array($_PEAR_destructor_object_list)
            && count($_PEAR_destructor_object_list)) {
    Severity: Minor
    Found in class/pear/PEAR.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 __construct has 55 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function __construct(
            $message = 'unknown error',
            $code = null,
            $mode = null,
            $options = null,
    Severity: Major
    Found in class/pear/PEAR.php - About 2 hrs to fix

      PEAR has 21 functions (exceeds 20 allowed). Consider refactoring.
      Open

      class PEAR
      {
          /**
           * Whether to enable internal debug messages.
           *
      Severity: Minor
      Found in class/pear/PEAR.php - About 2 hrs to fix

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

            public function toString()
            {
                $modes  = [];
                $levels = [
                    E_USER_NOTICE  => 'notice',
        Severity: Minor
        Found in class/pear/PEAR.php - About 1 hr to fix

          Method _raiseError has 39 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              protected static function _raiseError(
                  $object,
                  $message = null,
                  $code = null,
                  $mode = null,
          Severity: Minor
          Found in class/pear/PEAR.php - About 1 hr to fix

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

                public function __construct($error_class = null)
                {
                    $classname = strtolower(get_class($this));
                    if ($this->_debug) {
                        print "PEAR constructor called, class=$classname\n";
            Severity: Minor
            Found in class/pear/PEAR.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

            Method staticPopErrorHandling has 29 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                public static function staticPopErrorHandling()
                {
                    $stack      = &$GLOBALS['_PEAR_error_handler_stack'];
                    $setmode    = &$GLOBALS['_PEAR_default_error_mode'];
                    $setoptions = &$GLOBALS['_PEAR_default_error_options'];
            Severity: Minor
            Found in class/pear/PEAR.php - About 1 hr to fix

              Method _setErrorHandling has 29 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  protected static function _setErrorHandling(
                      $object,
                      $mode = null,
                      $options = null
                  ) {
              Severity: Minor
              Found in class/pear/PEAR.php - About 1 hr to fix

                Method _PEAR_call_destructors has 29 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                function _PEAR_call_destructors()
                {
                    global $_PEAR_destructor_object_list;
                    if (is_array($_PEAR_destructor_object_list)
                        && count($_PEAR_destructor_object_list)) {
                Severity: Minor
                Found in class/pear/PEAR.php - About 1 hr to fix

                  Method staticPushErrorHandling has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                      public static function staticPushErrorHandling($mode, $options = null)
                      {
                          $stack       = &$GLOBALS['_PEAR_error_handler_stack'];
                          $def_mode    = &$GLOBALS['_PEAR_default_error_mode'];
                          $def_options = &$GLOBALS['_PEAR_default_error_options'];
                  Severity: Minor
                  Found in class/pear/PEAR.php - About 1 hr to fix

                    Method _raiseError has 8 arguments (exceeds 4 allowed). Consider refactoring.
                    Open

                            $object,
                            $message = null,
                            $code = null,
                            $mode = null,
                            $options = null,
                    Severity: Major
                    Found in class/pear/PEAR.php - About 1 hr to fix

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

                          protected static function _setErrorHandling(
                              $object,
                              $mode = null,
                              $options = null
                          ) {
                      Severity: Minor
                      Found in class/pear/PEAR.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

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

                          public static function loadExtension($ext)
                          {
                              if (extension_loaded($ext)) {
                                  return true;
                              }
                      Severity: Minor
                      Found in class/pear/PEAR.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

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

                          public function toString()
                          {
                              $modes  = [];
                              $levels = [
                                  E_USER_NOTICE  => 'notice',
                      Severity: Minor
                      Found in class/pear/PEAR.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 __construct has 5 arguments (exceeds 4 allowed). Consider refactoring.
                      Open

                              $message = 'unknown error',
                              $code = null,
                              $mode = null,
                              $options = null,
                              $userinfo = null
                      Severity: Minor
                      Found in class/pear/PEAR.php - About 35 mins to fix

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

                                $message = 'unknown error',
                                $code = null,
                                $mode = null,
                                $options = null,
                                $userinfo = null
                        Severity: Minor
                        Found in class/pear/PEAR.php - About 35 mins to fix

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

                              public function delExpect($error_code)
                              {
                                  $deleted = false;
                                  if ((is_array($error_code) && (0 != count($error_code)))) {
                                      // $error_code is a non-empty array here; we walk through it trying
                          Severity: Minor
                          Found in class/pear/PEAR.php - About 35 mins to fix

                          Cognitive Complexity

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

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

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

                          Further reading

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

                              public static function staticPushErrorHandling($mode, $options = null)
                              {
                                  $stack       = &$GLOBALS['_PEAR_error_handler_stack'];
                                  $def_mode    = &$GLOBALS['_PEAR_default_error_mode'];
                                  $def_options = &$GLOBALS['_PEAR_default_error_options'];
                          Severity: Minor
                          Found in class/pear/PEAR.php - About 25 mins to fix

                          Cognitive Complexity

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

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

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

                          Further reading

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

                              public static function staticPopErrorHandling()
                              {
                                  $stack      = &$GLOBALS['_PEAR_error_handler_stack'];
                                  $setmode    = &$GLOBALS['_PEAR_default_error_mode'];
                                  $setoptions = &$GLOBALS['_PEAR_default_error_options'];
                          Severity: Minor
                          Found in class/pear/PEAR.php - About 25 mins to fix

                          Cognitive Complexity

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

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

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

                          Further reading

                          The method _raiseError() has an NPath complexity of 800. The configured NPath complexity threshold is 200.
                          Open

                              protected static function _raiseError(
                                  $object,
                                  $message = null,
                                  $code = null,
                                  $mode = null,
                          Severity: Minor
                          Found in class/pear/PEAR.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 __construct() has an NPath complexity of 5760. The configured NPath complexity threshold is 200.
                          Open

                              public function __construct(
                                  $message = 'unknown error',
                                  $code = null,
                                  $mode = null,
                                  $options = null,
                          Severity: Minor
                          Found in class/pear/PEAR.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 _raiseError() has a Cyclomatic Complexity of 19. The configured cyclomatic complexity threshold is 10.
                          Open

                              protected static function _raiseError(
                                  $object,
                                  $message = null,
                                  $code = null,
                                  $mode = null,
                          Severity: Minor
                          Found in class/pear/PEAR.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 _setErrorHandling() has a Cyclomatic Complexity of 10. The configured cyclomatic complexity threshold is 10.
                          Open

                              protected static function _setErrorHandling(
                                  $object,
                                  $mode = null,
                                  $options = null
                              ) {
                          Severity: Minor
                          Found in class/pear/PEAR.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 function _PEAR_call_destructors() has a Cyclomatic Complexity of 11. The configured cyclomatic complexity threshold is 10.
                          Open

                          function _PEAR_call_destructors()
                          {
                              global $_PEAR_destructor_object_list;
                              if (is_array($_PEAR_destructor_object_list)
                                  && count($_PEAR_destructor_object_list)) {
                          Severity: Minor
                          Found in class/pear/PEAR.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 __construct() has a Cyclomatic Complexity of 18. The configured cyclomatic complexity threshold is 10.
                          Open

                              public function __construct(
                                  $message = 'unknown error',
                                  $code = null,
                                  $mode = null,
                                  $options = null,
                          Severity: Minor
                          Found in class/pear/PEAR.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 _raiseError has a boolean flag argument $skipmsg, which is a certain sign of a Single Responsibility Principle violation.
                          Open

                                  $skipmsg = false
                          Severity: Minor
                          Found in class/pear/PEAR.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

                          Remove error control operator '@' on line 762.
                          Open

                              public static function loadExtension($ext)
                              {
                                  if (extension_loaded($ext)) {
                                      return true;
                                  }
                          Severity: Minor
                          Found in class/pear/PEAR.php by phpmd

                          ErrorControlOperator

                          Error suppression should be avoided if possible as it doesn't just suppress the error, that you are trying to stop, but will also suppress errors that you didn't predict would ever occur. Consider changing error_reporting() level and/or setting up your own error handler.

                          Example

                          function foo($filePath) {
                              $file = @fopen($filPath); // hides exceptions
                              $key = @$array[$notExistingKey]; // assigns null to $key
                          }

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

                          Remove error control operator '@' on line 762.
                          Open

                              public static function loadExtension($ext)
                              {
                                  if (extension_loaded($ext)) {
                                      return true;
                                  }
                          Severity: Minor
                          Found in class/pear/PEAR.php by phpmd

                          ErrorControlOperator

                          Error suppression should be avoided if possible as it doesn't just suppress the error, that you are trying to stop, but will also suppress errors that you didn't predict would ever occur. Consider changing error_reporting() level and/or setting up your own error handler.

                          Example

                          function foo($filePath) {
                              $file = @fopen($filPath); // hides exceptions
                              $key = @$array[$notExistingKey]; // assigns null to $key
                          }

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

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

                                  } else {
                                      array_push($this->_expected_errors, [$code]);
                                  }
                          Severity: Minor
                          Found in class/pear/PEAR.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

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

                                  } else {
                                      $a = new $ec($message, $code, $mode, $options, $userinfo);
                                  }
                          Severity: Minor
                          Found in class/pear/PEAR.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

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

                                          } else {
                                              trigger_error('invalid error callback', E_USER_WARNING);
                                          }
                          Severity: Minor
                          Found in class/pear/PEAR.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 '542', column '22').
                          Open

                              protected static function _raiseError(
                                  $object,
                                  $message = null,
                                  $code = null,
                                  $mode = null,
                          Severity: Minor
                          Found in class/pear/PEAR.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 _pushErrorHandling uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                          Open

                                  } else {
                                      $def_mode    = &$GLOBALS['_PEAR_default_error_mode'];
                                      $def_options = &$GLOBALS['_PEAR_default_error_options'];
                                  }
                          Severity: Minor
                          Found in class/pear/PEAR.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

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

                                          } else {
                                              trigger_error('invalid error callback', E_USER_WARNING);
                                          }
                          Severity: Minor
                          Found in class/pear/PEAR.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

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

                                      } else {
                                          $classname = get_parent_class($classname);
                                      }
                          Severity: Minor
                          Found in class/pear/PEAR.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

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

                                  } else {
                                      $setmode    = &$GLOBALS['_PEAR_default_error_mode'];
                                      $setoptions = &$GLOBALS['_PEAR_default_error_options'];
                                  }
                          Severity: Minor
                          Found in class/pear/PEAR.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

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

                                          } else {
                                              trigger_error('invalid error callback', E_USER_WARNING);
                                          }
                          Severity: Minor
                          Found in class/pear/PEAR.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

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

                                  } else {
                                      self::setErrorHandling($mode, $options);
                                  }
                          Severity: Minor
                          Found in class/pear/PEAR.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

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

                                  } else {
                                      $ec = 'PEAR_Error';
                                  }
                          Severity: Minor
                          Found in class/pear/PEAR.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

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

                                  } else {
                                      if (null === $options) {
                                          $options = E_USER_NOTICE;
                                      }
                          
                          
                          Severity: Minor
                          Found in class/pear/PEAR.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

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

                                  } else {
                                      $this->userinfo .= " ** $info";
                                  }
                          Severity: Minor
                          Found in class/pear/PEAR.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

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

                                  } else {
                                      self::setErrorHandling($mode, $options);
                                  }
                          Severity: Minor
                          Found in class/pear/PEAR.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

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

                                  } else {
                                      return time();
                                  }
                          Severity: Minor
                          Found in class/pear/PEAR.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 using static access to class 'PEAR' in method '_PEAR_call_destructors'.
                          Open

                                  $destructLifoExists = PEAR::getStaticProperty('PEAR', 'destructlifo');
                          Severity: Minor
                          Found in class/pear/PEAR.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

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

                                      } else {
                                          $format = $options;
                                      }
                          Severity: Minor
                          Found in class/pear/PEAR.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

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

                                  } else {
                                      $suffix = '.so';
                                  }
                          Severity: Minor
                          Found in class/pear/PEAR.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

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

                                          } else {
                                              $classname = get_parent_class($classname);
                                          }
                          Severity: Minor
                          Found in class/pear/PEAR.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

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

                                      } else {
                                          $callback = $this->callback;
                                      }
                          Severity: Minor
                          Found in class/pear/PEAR.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

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

                                      } else {
                                          $format = $options;
                                      }
                          Severity: Minor
                          Found in class/pear/PEAR.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 '774', column '13').
                          Open

                              public static function getSourceDateEpoch()
                              {
                                  if ($source_date_epoch = getenv('SOURCE_DATE_EPOCH')) {
                                      if (preg_match('/^\d+$/', $source_date_epoch)) {
                                          return (int)$source_date_epoch;
                          Severity: Minor
                          Found in class/pear/PEAR.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 getSourceDateEpoch uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                          Open

                                      } else {
                                          //  "If the value is malformed, the build process SHOULD exit with a non-zero error code."
                                          self::raiseError("Invalid SOURCE_DATE_EPOCH: $source_date_epoch");
                                          exit(1);
                                      }
                          Severity: Minor
                          Found in class/pear/PEAR.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 using static access to class 'PEAR' in method '__construct'.
                          Open

                                  $skiptrace = PEAR::getStaticProperty('PEAR_Error', 'skiptrace');
                          Severity: Minor
                          Found in class/pear/PEAR.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 '$key'.
                          Open

                                      foreach ($error_code as $key => $error) {
                          Severity: Minor
                          Found in class/pear/PEAR.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 '$setmode'.
                          Open

                                  $setmode    = &$GLOBALS['_PEAR_default_error_mode'];
                          Severity: Minor
                          Found in class/pear/PEAR.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 '$setmode'.
                          Open

                                      $setmode    = &$object->_default_error_mode;
                          Severity: Minor
                          Found in class/pear/PEAR.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 '$setoptions'.
                          Open

                                      $setoptions = &$object->_default_error_options;
                          Severity: Minor
                          Found in class/pear/PEAR.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 '$setoptions'.
                          Open

                                  $setoptions = &$GLOBALS['_PEAR_default_error_options'];
                          Severity: Minor
                          Found in class/pear/PEAR.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

                          The method __construct() contains an exit expression.
                          Open

                                      exit($code);
                          Severity: Minor
                          Found in class/pear/PEAR.php by phpmd

                          ExitExpression

                          Since: 0.2

                          An exit-expression within regular code is untestable and therefore it should be avoided. Consider to move the exit-expression into some kind of startup script where an error/exception code is returned to the calling environment.

                          Example

                          class Foo {
                              public function bar($param)  {
                                  if ($param === 42) {
                                      exit(23);
                                  }
                              }
                          }

                          Source https://phpmd.org/rules/design.html#exitexpression

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

                                  foreach ($_PEAR_destructor_object_list as $k => $objref) {
                          Severity: Minor
                          Found in class/pear/PEAR.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

                          The method getSourceDateEpoch() contains an exit expression.
                          Open

                                          exit(1);
                          Severity: Minor
                          Found in class/pear/PEAR.php by phpmd

                          ExitExpression

                          Since: 0.2

                          An exit-expression within regular code is untestable and therefore it should be avoided. Consider to move the exit-expression into some kind of startup script where an error/exception code is returned to the calling environment.

                          Example

                          class Foo {
                              public function bar($param)  {
                                  if ($param === 42) {
                                      exit(23);
                                  }
                              }
                          }

                          Source https://phpmd.org/rules/design.html#exitexpression

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

                                  switch ($mode) {
                                      case PEAR_ERROR_EXCEPTION:
                                      case PEAR_ERROR_RETURN:
                                      case PEAR_ERROR_PRINT:
                                      case PEAR_ERROR_TRIGGER:
                          Severity: Major
                          Found in class/pear/PEAR.php and 2 other locations - About 2 hrs to fix
                          class/pear/PEAR.php on lines 612..636
                          class/pear/PEAR.php on lines 649..673

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

                          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

                                  switch ($mode) {
                                      case PEAR_ERROR_EXCEPTION:
                                      case PEAR_ERROR_RETURN:
                                      case PEAR_ERROR_PRINT:
                                      case PEAR_ERROR_TRIGGER:
                          Severity: Major
                          Found in class/pear/PEAR.php and 2 other locations - About 2 hrs to fix
                          class/pear/PEAR.php on lines 362..386
                          class/pear/PEAR.php on lines 612..636

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

                          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

                                  switch ($mode) {
                                      case PEAR_ERROR_EXCEPTION:
                                      case PEAR_ERROR_RETURN:
                                      case PEAR_ERROR_PRINT:
                                      case PEAR_ERROR_TRIGGER:
                          Severity: Major
                          Found in class/pear/PEAR.php and 2 other locations - About 2 hrs to fix
                          class/pear/PEAR.php on lines 362..386
                          class/pear/PEAR.php on lines 649..673

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

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

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

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

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

                          Refactorings

                          Further Reading

                          Avoid excessively long variable names like $_PEAR_destructor_object_list. Keep variable name length under 20.
                          Open

                                          global $_PEAR_destructor_object_list;
                          Severity: Minor
                          Found in class/pear/PEAR.php by phpmd

                          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

                          Avoid excessively long variable names like $_default_error_options. Keep variable name length under 20.
                          Open

                              public $_default_error_options = null;
                          Severity: Minor
                          Found in class/pear/PEAR.php by phpmd

                          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

                          Avoid excessively long variable names like $_default_error_handler. Keep variable name length under 20.
                          Open

                              public $_default_error_handler = '';
                          Severity: Minor
                          Found in class/pear/PEAR.php by phpmd

                          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

                          Avoid excessively long variable names like $_PEAR_destructor_object_list. Keep variable name length under 20.
                          Open

                              global $_PEAR_destructor_object_list;
                          Severity: Minor
                          Found in class/pear/PEAR.php by phpmd

                          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

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

                          class PEAR
                          Severity: Minor
                          Found in class/pear/PEAR.php by phpcodesniffer

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

                          class PEAR_Error
                          Severity: Minor
                          Found in class/pear/PEAR.php by phpcodesniffer

                          The property $_default_error_mode is not named in camelCase.
                          Open

                          class PEAR
                          {
                              /**
                               * Whether to enable internal debug messages.
                               *
                          Severity: Minor
                          Found in class/pear/PEAR.php by phpmd

                          CamelCasePropertyName

                          Since: 0.2

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

                          Example

                          class ClassName {
                              protected $property_name;
                          }

                          Source

                          The property $_error_class is not named in camelCase.
                          Open

                          class PEAR
                          {
                              /**
                               * Whether to enable internal debug messages.
                               *
                          Severity: Minor
                          Found in class/pear/PEAR.php by phpmd

                          CamelCasePropertyName

                          Since: 0.2

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

                          Example

                          class ClassName {
                              protected $property_name;
                          }

                          Source

                          The parameter $error_class is not named in camelCase.
                          Open

                              public function __construct($error_class = null)
                              {
                                  $classname = strtolower(get_class($this));
                                  if ($this->_debug) {
                                      print "PEAR constructor called, class=$classname\n";
                          Severity: Minor
                          Found in class/pear/PEAR.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

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

                                      $a = new $ec($code, $mode, $options, $userinfo);
                          Severity: Minor
                          Found in class/pear/PEAR.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 property $_default_error_handler is not named in camelCase.
                          Open

                          class PEAR
                          {
                              /**
                               * Whether to enable internal debug messages.
                               *
                          Severity: Minor
                          Found in class/pear/PEAR.php by phpmd

                          CamelCasePropertyName

                          Since: 0.2

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

                          Example

                          class ClassName {
                              protected $property_name;
                          }

                          Source

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

                                      $ec = $error_class;
                          Severity: Minor
                          Found in class/pear/PEAR.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 $error_class is not named in camelCase.
                          Open

                              protected static function _raiseError(
                                  $object,
                                  $message = null,
                                  $code = null,
                                  $mode = null,
                          Severity: Minor
                          Found in class/pear/PEAR.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 property $_debug is not named in camelCase.
                          Open

                          class PEAR
                          {
                              /**
                               * Whether to enable internal debug messages.
                               *
                          Severity: Minor
                          Found in class/pear/PEAR.php by phpmd

                          CamelCasePropertyName

                          Since: 0.2

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

                          Example

                          class ClassName {
                              protected $property_name;
                          }

                          Source

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

                                      $a = $object->raiseError($message, $code, null, null, $userinfo);
                          Severity: Minor
                          Found in class/pear/PEAR.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 $error_code is not named in camelCase.
                          Open

                              public function _checkDelExpect($error_code)
                              {
                                  $deleted = false;
                                  foreach ($this->_expected_errors as $key => $error_array) {
                                      if (in_array($error_code, $error_array)) {
                          Severity: Minor
                          Found in class/pear/PEAR.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 $error_code is not named in camelCase.
                          Open

                              public function delExpect($error_code)
                              {
                                  $deleted = false;
                                  if ((is_array($error_code) && (0 != count($error_code)))) {
                                      // $error_code is a non-empty array here; we walk through it trying
                          Severity: Minor
                          Found in class/pear/PEAR.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 $error_class is not named in camelCase.
                          Open

                              public function PEAR($error_class = null)
                              {
                                  self::__construct($error_class);
                              }
                          Severity: Minor
                          Found in class/pear/PEAR.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 property $_default_error_options is not named in camelCase.
                          Open

                          class PEAR
                          {
                              /**
                               * Whether to enable internal debug messages.
                               *
                          Severity: Minor
                          Found in class/pear/PEAR.php by phpmd

                          CamelCasePropertyName

                          Since: 0.2

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

                          Example

                          class ClassName {
                              protected $property_name;
                          }

                          Source

                          The property $_expected_errors is not named in camelCase.
                          Open

                          class PEAR
                          {
                              /**
                               * Whether to enable internal debug messages.
                               *
                          Severity: Minor
                          Found in class/pear/PEAR.php by phpmd

                          CamelCasePropertyName

                          Since: 0.2

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

                          Example

                          class ClassName {
                              protected $property_name;
                          }

                          Source

                          The class PEAR_Error is not named in CamelCase.
                          Open

                          class PEAR_Error
                          {
                              public $error_message_prefix = '';
                              public $mode                 = PEAR_ERROR_RETURN;
                              public $level                = E_USER_NOTICE;
                          Severity: Minor
                          Found in class/pear/PEAR.php by phpmd

                          CamelCaseClassName

                          Since: 0.2

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

                          Example

                          class class_name {
                          }

                          Source

                          The property $error_message_prefix is not named in camelCase.
                          Open

                          class PEAR_Error
                          {
                              public $error_message_prefix = '';
                              public $mode                 = PEAR_ERROR_RETURN;
                              public $level                = E_USER_NOTICE;
                          Severity: Minor
                          Found in class/pear/PEAR.php by phpmd

                          CamelCasePropertyName

                          Since: 0.2

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

                          Example

                          class ClassName {
                              protected $property_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 24 and the first side effect is on line 46.
                          Open

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

                          Each class must be in a file by itself
                          Open

                          class PEAR_Error
                          Severity: Minor
                          Found in class/pear/PEAR.php by phpcodesniffer

                          Property name "$_default_error_mode" should not be prefixed with an underscore to indicate visibility
                          Open

                              public $_default_error_mode = null;
                          Severity: Minor
                          Found in class/pear/PEAR.php by phpcodesniffer

                          Property name "$_default_error_handler" should not be prefixed with an underscore to indicate visibility
                          Open

                              public $_default_error_handler = '';
                          Severity: Minor
                          Found in class/pear/PEAR.php by phpcodesniffer

                          Method name "_throwError" should not be prefixed with an underscore to indicate visibility
                          Open

                              protected static function _throwError($object, $message = null, $code = null, $userinfo = null)
                          Severity: Minor
                          Found in class/pear/PEAR.php by phpcodesniffer

                          Property name "$_debug" should not be prefixed with an underscore to indicate visibility
                          Open

                              public $_debug = false;
                          Severity: Minor
                          Found in class/pear/PEAR.php by phpcodesniffer

                          Property name "$_error_class" should not be prefixed with an underscore to indicate visibility
                          Open

                              public $_error_class = 'PEAR_Error';
                          Severity: Minor
                          Found in class/pear/PEAR.php by phpcodesniffer

                          Method name "_setErrorHandling" should not be prefixed with an underscore to indicate visibility
                          Open

                              protected static function _setErrorHandling(
                          Severity: Minor
                          Found in class/pear/PEAR.php by phpcodesniffer

                          Property name "$_default_error_options" should not be prefixed with an underscore to indicate visibility
                          Open

                              public $_default_error_options = null;
                          Severity: Minor
                          Found in class/pear/PEAR.php by phpcodesniffer

                          Method name "_pushErrorHandling" should not be prefixed with an underscore to indicate visibility
                          Open

                              protected static function _pushErrorHandling($object, $mode, $options = null)
                          Severity: Minor
                          Found in class/pear/PEAR.php by phpcodesniffer

                          Method name "_PEAR" should not be prefixed with an underscore to indicate visibility
                          Open

                              public function _PEAR()
                          Severity: Minor
                          Found in class/pear/PEAR.php by phpcodesniffer

                          Method name "_raiseError" should not be prefixed with an underscore to indicate visibility
                          Open

                              protected static function _raiseError(
                          Severity: Minor
                          Found in class/pear/PEAR.php by phpcodesniffer

                          Property name "$_expected_errors" should not be prefixed with an underscore to indicate visibility
                          Open

                              public $_expected_errors = [];
                          Severity: Minor
                          Found in class/pear/PEAR.php by phpcodesniffer

                          Method name "_checkDelExpect" should not be prefixed with an underscore to indicate visibility
                          Open

                              public function _checkDelExpect($error_code)
                          Severity: Minor
                          Found in class/pear/PEAR.php by phpcodesniffer

                          Method name "_popErrorHandling" should not be prefixed with an underscore to indicate visibility
                          Open

                              protected static function _popErrorHandling($object)
                          Severity: Minor
                          Found in class/pear/PEAR.php by phpcodesniffer

                          Method name "PEAR_Error::PEAR_Error" is not in camel caps format
                          Open

                              public function PEAR_Error(
                          Severity: Minor
                          Found in class/pear/PEAR.php by phpcodesniffer

                          Line exceeds 120 characters; contains 153 characters
                          Open

                                          $callback = (is_object($this->callback[0]) ? strtolower(get_class($this->callback[0])) : $this->callback[0]) . '::' . $this->callback[1];
                          Severity: Minor
                          Found in class/pear/PEAR.php by phpcodesniffer

                          Class name "PEAR_Error" is not in camel caps format
                          Open

                          class PEAR_Error
                          Severity: Minor
                          Found in class/pear/PEAR.php by phpcodesniffer

                          The variable $error_array is not named in camelCase.
                          Open

                              public function _checkDelExpect($error_code)
                              {
                                  $deleted = false;
                                  foreach ($this->_expected_errors as $key => $error_array) {
                                      if (in_array($error_code, $error_array)) {
                          Severity: Minor
                          Found in class/pear/PEAR.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 $def_options is not named in camelCase.
                          Open

                              protected static function _pushErrorHandling($object, $mode, $options = null)
                              {
                                  $stack = &$GLOBALS['_PEAR_error_handler_stack'];
                                  if (null !== $object) {
                                      $def_mode    = &$object->_default_error_mode;
                          Severity: Minor
                          Found in class/pear/PEAR.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 $error_code is not named in camelCase.
                          Open

                              public function delExpect($error_code)
                              {
                                  $deleted = false;
                                  if ((is_array($error_code) && (0 != count($error_code)))) {
                                      // $error_code is a non-empty array here; we walk through it trying
                          Severity: Minor
                          Found in class/pear/PEAR.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 $error_code is not named in camelCase.
                          Open

                              public function delExpect($error_code)
                              {
                                  $deleted = false;
                                  if ((is_array($error_code) && (0 != count($error_code)))) {
                                      // $error_code is a non-empty array here; we walk through it trying
                          Severity: Minor
                          Found in class/pear/PEAR.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 $def_options is not named in camelCase.
                          Open

                              public static function staticPushErrorHandling($mode, $options = null)
                              {
                                  $stack       = &$GLOBALS['_PEAR_error_handler_stack'];
                                  $def_mode    = &$GLOBALS['_PEAR_default_error_mode'];
                                  $def_options = &$GLOBALS['_PEAR_default_error_options'];
                          Severity: Minor
                          Found in class/pear/PEAR.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 $def_mode is not named in camelCase.
                          Open

                              protected static function _pushErrorHandling($object, $mode, $options = null)
                              {
                                  $stack = &$GLOBALS['_PEAR_error_handler_stack'];
                                  if (null !== $object) {
                                      $def_mode    = &$object->_default_error_mode;
                          Severity: Minor
                          Found in class/pear/PEAR.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 $error_code is not named in camelCase.
                          Open

                              public function delExpect($error_code)
                              {
                                  $deleted = false;
                                  if ((is_array($error_code) && (0 != count($error_code)))) {
                                      // $error_code is a non-empty array here; we walk through it trying
                          Severity: Minor
                          Found in class/pear/PEAR.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 $def_mode is not named in camelCase.
                          Open

                              public static function staticPushErrorHandling($mode, $options = null)
                              {
                                  $stack       = &$GLOBALS['_PEAR_error_handler_stack'];
                                  $def_mode    = &$GLOBALS['_PEAR_default_error_mode'];
                                  $def_options = &$GLOBALS['_PEAR_default_error_options'];
                          Severity: Minor
                          Found in class/pear/PEAR.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 $def_options is not named in camelCase.
                          Open

                              protected static function _pushErrorHandling($object, $mode, $options = null)
                              {
                                  $stack = &$GLOBALS['_PEAR_error_handler_stack'];
                                  if (null !== $object) {
                                      $def_mode    = &$object->_default_error_mode;
                          Severity: Minor
                          Found in class/pear/PEAR.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 $error_class is not named in camelCase.
                          Open

                              public function PEAR($error_class = null)
                              {
                                  self::__construct($error_class);
                              }
                          Severity: Minor
                          Found in class/pear/PEAR.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 $error_array is not named in camelCase.
                          Open

                              public function _checkDelExpect($error_code)
                              {
                                  $deleted = false;
                                  foreach ($this->_expected_errors as $key => $error_array) {
                                      if (in_array($error_code, $error_array)) {
                          Severity: Minor
                          Found in class/pear/PEAR.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 $error_class is not named in camelCase.
                          Open

                              protected static function _raiseError(
                                  $object,
                                  $message = null,
                                  $code = null,
                                  $mode = null,
                          Severity: Minor
                          Found in class/pear/PEAR.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 $def_options is not named in camelCase.
                          Open

                              public static function staticPushErrorHandling($mode, $options = null)
                              {
                                  $stack       = &$GLOBALS['_PEAR_error_handler_stack'];
                                  $def_mode    = &$GLOBALS['_PEAR_default_error_mode'];
                                  $def_options = &$GLOBALS['_PEAR_default_error_options'];
                          Severity: Minor
                          Found in class/pear/PEAR.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 $error_class is not named in camelCase.
                          Open

                              public function __construct($error_class = null)
                              {
                                  $classname = strtolower(get_class($this));
                                  if ($this->_debug) {
                                      print "PEAR constructor called, class=$classname\n";
                          Severity: Minor
                          Found in class/pear/PEAR.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 $error_class is not named in camelCase.
                          Open

                              protected static function _raiseError(
                                  $object,
                                  $message = null,
                                  $code = null,
                                  $mode = null,
                          Severity: Minor
                          Found in class/pear/PEAR.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 $def_mode is not named in camelCase.
                          Open

                              public static function staticPushErrorHandling($mode, $options = null)
                              {
                                  $stack       = &$GLOBALS['_PEAR_error_handler_stack'];
                                  $def_mode    = &$GLOBALS['_PEAR_default_error_mode'];
                                  $def_options = &$GLOBALS['_PEAR_default_error_options'];
                          Severity: Minor
                          Found in class/pear/PEAR.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 $error_class is not named in camelCase.
                          Open

                              public function __construct($error_class = null)
                              {
                                  $classname = strtolower(get_class($this));
                                  if ($this->_debug) {
                                      print "PEAR constructor called, class=$classname\n";
                          Severity: Minor
                          Found in class/pear/PEAR.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 $_PEAR_destructor_object_list is not named in camelCase.
                          Open

                              public function __construct($error_class = null)
                              {
                                  $classname = strtolower(get_class($this));
                                  if ($this->_debug) {
                                      print "PEAR constructor called, class=$classname\n";
                          Severity: Minor
                          Found in class/pear/PEAR.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 $_PEAR_destructor_object_list is not named in camelCase.
                          Open

                              public function __construct($error_class = null)
                              {
                                  $classname = strtolower(get_class($this));
                                  if ($this->_debug) {
                                      print "PEAR constructor called, class=$classname\n";
                          Severity: Minor
                          Found in class/pear/PEAR.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 $def_mode is not named in camelCase.
                          Open

                              public static function staticPushErrorHandling($mode, $options = null)
                              {
                                  $stack       = &$GLOBALS['_PEAR_error_handler_stack'];
                                  $def_mode    = &$GLOBALS['_PEAR_default_error_mode'];
                                  $def_options = &$GLOBALS['_PEAR_default_error_options'];
                          Severity: Minor
                          Found in class/pear/PEAR.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 $error_code is not named in camelCase.
                          Open

                              public function _checkDelExpect($error_code)
                              {
                                  $deleted = false;
                                  foreach ($this->_expected_errors as $key => $error_array) {
                                      if (in_array($error_code, $error_array)) {
                          Severity: Minor
                          Found in class/pear/PEAR.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 $def_options is not named in camelCase.
                          Open

                              public static function staticPushErrorHandling($mode, $options = null)
                              {
                                  $stack       = &$GLOBALS['_PEAR_error_handler_stack'];
                                  $def_mode    = &$GLOBALS['_PEAR_default_error_mode'];
                                  $def_options = &$GLOBALS['_PEAR_default_error_options'];
                          Severity: Minor
                          Found in class/pear/PEAR.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 $def_mode is not named in camelCase.
                          Open

                              public static function staticPushErrorHandling($mode, $options = null)
                              {
                                  $stack       = &$GLOBALS['_PEAR_error_handler_stack'];
                                  $def_mode    = &$GLOBALS['_PEAR_default_error_mode'];
                                  $def_options = &$GLOBALS['_PEAR_default_error_options'];
                          Severity: Minor
                          Found in class/pear/PEAR.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 $error_code is not named in camelCase.
                          Open

                              public function delExpect($error_code)
                              {
                                  $deleted = false;
                                  if ((is_array($error_code) && (0 != count($error_code)))) {
                                      // $error_code is a non-empty array here; we walk through it trying
                          Severity: Minor
                          Found in class/pear/PEAR.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 $def_options is not named in camelCase.
                          Open

                              protected static function _pushErrorHandling($object, $mode, $options = null)
                              {
                                  $stack = &$GLOBALS['_PEAR_error_handler_stack'];
                                  if (null !== $object) {
                                      $def_mode    = &$object->_default_error_mode;
                          Severity: Minor
                          Found in class/pear/PEAR.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 $error_array is not named in camelCase.
                          Open

                              public function _checkDelExpect($error_code)
                              {
                                  $deleted = false;
                                  foreach ($this->_expected_errors as $key => $error_array) {
                                      if (in_array($error_code, $error_array)) {
                          Severity: Minor
                          Found in class/pear/PEAR.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 $error_code is not named in camelCase.
                          Open

                              public function _checkDelExpect($error_code)
                              {
                                  $deleted = false;
                                  foreach ($this->_expected_errors as $key => $error_array) {
                                      if (in_array($error_code, $error_array)) {
                          Severity: Minor
                          Found in class/pear/PEAR.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 $error_class is not named in camelCase.
                          Open

                              protected static function _raiseError(
                                  $object,
                                  $message = null,
                                  $code = null,
                                  $mode = null,
                          Severity: Minor
                          Found in class/pear/PEAR.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 $def_mode is not named in camelCase.
                          Open

                              protected static function _pushErrorHandling($object, $mode, $options = null)
                              {
                                  $stack = &$GLOBALS['_PEAR_error_handler_stack'];
                                  if (null !== $object) {
                                      $def_mode    = &$object->_default_error_mode;
                          Severity: Minor
                          Found in class/pear/PEAR.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 $def_mode is not named in camelCase.
                          Open

                              protected static function _pushErrorHandling($object, $mode, $options = null)
                              {
                                  $stack = &$GLOBALS['_PEAR_error_handler_stack'];
                                  if (null !== $object) {
                                      $def_mode    = &$object->_default_error_mode;
                          Severity: Minor
                          Found in class/pear/PEAR.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 $error_code is not named in camelCase.
                          Open

                              public function delExpect($error_code)
                              {
                                  $deleted = false;
                                  if ((is_array($error_code) && (0 != count($error_code)))) {
                                      // $error_code is a non-empty array here; we walk through it trying
                          Severity: Minor
                          Found in class/pear/PEAR.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 $def_options is not named in camelCase.
                          Open

                              public static function staticPushErrorHandling($mode, $options = null)
                              {
                                  $stack       = &$GLOBALS['_PEAR_error_handler_stack'];
                                  $def_mode    = &$GLOBALS['_PEAR_default_error_mode'];
                                  $def_options = &$GLOBALS['_PEAR_default_error_options'];
                          Severity: Minor
                          Found in class/pear/PEAR.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 $source_date_epoch is not named in camelCase.
                          Open

                              public static function getSourceDateEpoch()
                              {
                                  if ($source_date_epoch = getenv('SOURCE_DATE_EPOCH')) {
                                      if (preg_match('/^\d+$/', $source_date_epoch)) {
                                          return (int)$source_date_epoch;
                          Severity: Minor
                          Found in class/pear/PEAR.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 $_PEAR_destructor_object_list is not named in camelCase.
                          Open

                          function _PEAR_call_destructors()
                          {
                              global $_PEAR_destructor_object_list;
                              if (is_array($_PEAR_destructor_object_list)
                                  && count($_PEAR_destructor_object_list)) {
                          Severity: Minor
                          Found in class/pear/PEAR.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 $_PEAR_destructor_object_list is not named in camelCase.
                          Open

                          function _PEAR_call_destructors()
                          {
                              global $_PEAR_destructor_object_list;
                              if (is_array($_PEAR_destructor_object_list)
                                  && count($_PEAR_destructor_object_list)) {
                          Severity: Minor
                          Found in class/pear/PEAR.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 $_PEAR_destructor_object_list is not named in camelCase.
                          Open

                          function _PEAR_call_destructors()
                          {
                              global $_PEAR_destructor_object_list;
                              if (is_array($_PEAR_destructor_object_list)
                                  && count($_PEAR_destructor_object_list)) {
                          Severity: Minor
                          Found in class/pear/PEAR.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 $_PEAR_destructor_object_list is not named in camelCase.
                          Open

                          function _PEAR_call_destructors()
                          {
                              global $_PEAR_destructor_object_list;
                              if (is_array($_PEAR_destructor_object_list)
                                  && count($_PEAR_destructor_object_list)) {
                          Severity: Minor
                          Found in class/pear/PEAR.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 $_PEAR_destructor_object_list is not named in camelCase.
                          Open

                          function _PEAR_call_destructors()
                          {
                              global $_PEAR_destructor_object_list;
                              if (is_array($_PEAR_destructor_object_list)
                                  && count($_PEAR_destructor_object_list)) {
                          Severity: Minor
                          Found in class/pear/PEAR.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 $source_date_epoch is not named in camelCase.
                          Open

                              public static function getSourceDateEpoch()
                              {
                                  if ($source_date_epoch = getenv('SOURCE_DATE_EPOCH')) {
                                      if (preg_match('/^\d+$/', $source_date_epoch)) {
                                          return (int)$source_date_epoch;
                          Severity: Minor
                          Found in class/pear/PEAR.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 $_PEAR_destructor_object_list is not named in camelCase.
                          Open

                          function _PEAR_call_destructors()
                          {
                              global $_PEAR_destructor_object_list;
                              if (is_array($_PEAR_destructor_object_list)
                                  && count($_PEAR_destructor_object_list)) {
                          Severity: Minor
                          Found in class/pear/PEAR.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 $_PEAR_destructor_object_list is not named in camelCase.
                          Open

                          function _PEAR_call_destructors()
                          {
                              global $_PEAR_destructor_object_list;
                              if (is_array($_PEAR_destructor_object_list)
                                  && count($_PEAR_destructor_object_list)) {
                          Severity: Minor
                          Found in class/pear/PEAR.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 $source_date_epoch is not named in camelCase.
                          Open

                              public static function getSourceDateEpoch()
                              {
                                  if ($source_date_epoch = getenv('SOURCE_DATE_EPOCH')) {
                                      if (preg_match('/^\d+$/', $source_date_epoch)) {
                                          return (int)$source_date_epoch;
                          Severity: Minor
                          Found in class/pear/PEAR.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 $source_date_epoch is not named in camelCase.
                          Open

                              public static function getSourceDateEpoch()
                              {
                                  if ($source_date_epoch = getenv('SOURCE_DATE_EPOCH')) {
                                      if (preg_match('/^\d+$/', $source_date_epoch)) {
                                          return (int)$source_date_epoch;
                          Severity: Minor
                          Found in class/pear/PEAR.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 $_PEAR_destructor_object_list is not named in camelCase.
                          Open

                          function _PEAR_call_destructors()
                          {
                              global $_PEAR_destructor_object_list;
                              if (is_array($_PEAR_destructor_object_list)
                                  && count($_PEAR_destructor_object_list)) {
                          Severity: Minor
                          Found in class/pear/PEAR.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 _PEAR is not named in camelCase.
                          Open

                              public function _PEAR()
                              {
                                  if ($this->_debug) {
                                      printf("PEAR destructor called, class=%s\n", strtolower(get_class($this)));
                                  }
                          Severity: Minor
                          Found in class/pear/PEAR.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

                          The method _throwError is not named in camelCase.
                          Open

                              protected static function _throwError($object, $message = null, $code = null, $userinfo = null)
                              {
                                  if (null !== $object) {
                                      $a = $object->raiseError($message, $code, null, null, $userinfo);
                                      return $a;
                          Severity: Minor
                          Found in class/pear/PEAR.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

                          The method PEAR is not named in camelCase.
                          Open

                              public function PEAR($error_class = null)
                              {
                                  self::__construct($error_class);
                              }
                          Severity: Minor
                          Found in class/pear/PEAR.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

                          The method _checkDelExpect is not named in camelCase.
                          Open

                              public function _checkDelExpect($error_code)
                              {
                                  $deleted = false;
                                  foreach ($this->_expected_errors as $key => $error_array) {
                                      if (in_array($error_code, $error_array)) {
                          Severity: Minor
                          Found in class/pear/PEAR.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

                          The method _setErrorHandling is not named in camelCase.
                          Open

                              protected static function _setErrorHandling(
                                  $object,
                                  $mode = null,
                                  $options = null
                              ) {
                          Severity: Minor
                          Found in class/pear/PEAR.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

                          The method _raiseError is not named in camelCase.
                          Open

                              protected static function _raiseError(
                                  $object,
                                  $message = null,
                                  $code = null,
                                  $mode = null,
                          Severity: Minor
                          Found in class/pear/PEAR.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

                          The method _pushErrorHandling is not named in camelCase.
                          Open

                              protected static function _pushErrorHandling($object, $mode, $options = null)
                              {
                                  $stack = &$GLOBALS['_PEAR_error_handler_stack'];
                                  if (null !== $object) {
                                      $def_mode    = &$object->_default_error_mode;
                          Severity: Minor
                          Found in class/pear/PEAR.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

                          The method PEAR_Error is not named in camelCase.
                          Open

                              public function PEAR_Error(
                                  $message = 'unknown error',
                                  $code = null,
                                  $mode = null,
                                  $options = null,
                          Severity: Minor
                          Found in class/pear/PEAR.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

                          The method _popErrorHandling is not named in camelCase.
                          Open

                              protected static function _popErrorHandling($object)
                              {
                                  $stack = &$GLOBALS['_PEAR_error_handler_stack'];
                                  array_pop($stack);
                                  [$mode, $options] = $stack[count($stack) - 1];
                          Severity: Minor
                          Found in class/pear/PEAR.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