XoopsModules25x/xoopsinfo

View on GitHub
phpsysinfo/includes/os/class.Minix.inc.php

Summary

Maintainability
F
3 days
Test Coverage

Function _cpuinfo has a Cognitive Complexity of 42 (exceeds 5 allowed). Consider refactoring.
Open

    protected function _cpuinfo()
    {
        if (CommonFunctions::rfts('/proc/cpuinfo', $bufr, 0, 4096, false)) {
            $processors = preg_split('/\s?\n\s?\n/', trim($bufr));
            foreach ($processors as $processor) {
Severity: Minor
Found in phpsysinfo/includes/os/class.Minix.inc.php - About 6 hrs to fix

Cognitive Complexity

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

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

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

Further reading

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

class Minix extends OS
{
    /**
     * content of the syslog
     *

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

    protected function _processes()
    {
        if (CommonFunctions::executeProgram('ps', 'alx', $bufr, PSI_DEBUG)) {
            $lines = preg_split("/\n/", $bufr, -1, PREG_SPLIT_NO_EMPTY);
            $processes['*'] = 0;
Severity: Minor
Found in phpsysinfo/includes/os/class.Minix.inc.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 _cpuinfo has 54 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    protected function _cpuinfo()
    {
        if (CommonFunctions::rfts('/proc/cpuinfo', $bufr, 0, 4096, false)) {
            $processors = preg_split('/\s?\n\s?\n/', trim($bufr));
            foreach ($processors as $processor) {
Severity: Major
Found in phpsysinfo/includes/os/class.Minix.inc.php - About 2 hrs to fix

    Function _pci has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
    Open

        protected function _pci()
        {
            if (CommonFunctions::rfts('/proc/pci', $strBuf, 0, 4096, false)) {
                $arrLines = preg_split("/\n/", $strBuf, -1, PREG_SPLIT_NO_EMPTY);
                $arrResults = array();
    Severity: Minor
    Found in phpsysinfo/includes/os/class.Minix.inc.php - About 1 hr to fix

    Cognitive Complexity

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

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

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

    Further reading

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

        private function _network()
        {
            if (CommonFunctions::executeProgram('ifconfig', '-a', $bufr, PSI_DEBUG)) {
                $lines = preg_split("/\n/", $bufr, -1, PREG_SPLIT_NO_EMPTY);
                foreach ($lines as $line) {
    Severity: Minor
    Found in phpsysinfo/includes/os/class.Minix.inc.php - About 1 hr to fix

    Cognitive Complexity

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

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

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

    Further reading

    Function _kernel has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
    Open

        private function _kernel()
        {
            if (CommonFunctions::executeProgram('uname', '-rvm', $ret)) {
                foreach ($this->readdmesg() as $line) {
                    if (preg_match('/kernel: MINIX (\d+\.\d+\.\d+)\. \((.+)\)/', $line, $ar_buf)) {
    Severity: Minor
    Found in phpsysinfo/includes/os/class.Minix.inc.php - About 1 hr to fix

    Cognitive Complexity

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

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

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

    Further reading

    Function _hostname has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

        private function _hostname()
        {
            if (PSI_USE_VHOST === true) {
                if (CommonFunctions::readenv('SERVER_NAME', $hnm)) $this->sys->setHostname($hnm);
            } else {
    Severity: Minor
    Found in phpsysinfo/includes/os/class.Minix.inc.php - About 55 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 build has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        public function build()
        {
            $this->error->addError("WARN", "The Minix version of phpSysInfo is a work in progress, some things currently don't work");
            if (!$this->blockname || $this->blockname==='vitals') {
                $this->_distro();
    Severity: Minor
    Found in phpsysinfo/includes/os/class.Minix.inc.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 build() has an NPath complexity of 243. The configured NPath complexity threshold is 200.
    Open

        public function build()
        {
            $this->error->addError("WARN", "The Minix version of phpSysInfo is a work in progress, some things currently don't work");
            if (!$this->blockname || $this->blockname==='vitals') {
                $this->_distro();

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

        protected function _cpuinfo()
        {
            if (CommonFunctions::rfts('/proc/cpuinfo', $bufr, 0, 4096, false)) {
                $processors = preg_split('/\s?\n\s?\n/', trim($bufr));
                foreach ($processors as $processor) {

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

        public function build()
        {
            $this->error->addError("WARN", "The Minix version of phpSysInfo is a work in progress, some things currently don't work");
            if (!$this->blockname || $this->blockname==='vitals') {
                $this->_distro();

    CyclomaticComplexity

    Since: 0.1

    Complexity is determined by the number of decision points in a method plus one for the method entry. The decision points are 'if', 'while', 'for', and 'case labels'. Generally, 1-4 is low complexity, 5-7 indicates moderate complexity, 8-10 is high complexity, and 11+ is very high complexity.

    Example

    // Cyclomatic Complexity = 11
    class Foo {
    1   public function example() {
    2       if ($a == $b) {
    3           if ($a1 == $b1) {
                    fiddle();
    4           } elseif ($a2 == $b2) {
                    fiddle();
                } else {
                    fiddle();
                }
    5       } elseif ($c == $d) {
    6           while ($c == $d) {
                    fiddle();
                }
    7        } elseif ($e == $f) {
    8           for ($n = 0; $n < $h; $n++) {
                    fiddle();
                }
            } else {
                switch ($z) {
    9               case 1:
                        fiddle();
                        break;
    10              case 2:
                        fiddle();
                        break;
    11              case 3:
                        fiddle();
                        break;
                    default:
                        fiddle();
                        break;
                }
            }
        }
    }

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

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

            if (CommonFunctions::executeProgram('uptime', '', $buf)) {

    UndefinedVariable

    Since: 2.8.0

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

    Example

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

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

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

                    $ip = gethostbyname($result);

    UndefinedVariable

    Since: 2.8.0

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

    Example

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

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

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

                    if ($ip != $result) {

    UndefinedVariable

    Since: 2.8.0

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

    Example

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

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

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

                    $this->sys->setProcesses($processes);

    UndefinedVariable

    Since: 2.8.0

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

    Example

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

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

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

                $arrLines = preg_split("/\n/", $strBuf, -1, PREG_SPLIT_NO_EMPTY);

    UndefinedVariable

    Since: 2.8.0

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

    Example

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

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

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

                if (CommonFunctions::readenv('SERVER_NAME', $hnm)) $this->sys->setHostname($hnm);

    UndefinedVariable

    Since: 2.8.0

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

    Example

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

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

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

                            $processes[$state]++;

    UndefinedVariable

    Since: 2.8.0

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

    Example

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

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

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

                        $blocks = preg_replace("/\s(kernel: MINIX \d+\.\d+\.\d+\.)/", '<BLOCK>$1', $buf);

    UndefinedVariable

    Since: 2.8.0

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

    Example

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

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

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

                if (preg_match("/up (\d+) day[s]?,\s*(\d+):(\d+),/", $buf, $ar_buf)) {

    UndefinedVariable

    Since: 2.8.0

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

    Example

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

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

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

                        if (isset($processes[$state])) {

    UndefinedVariable

    Since: 2.8.0

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

    Example

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

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

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

                   $this->sys->setKernel($ret);

    UndefinedVariable

    Since: 2.8.0

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

    Example

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

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

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

            if (CommonFunctions::executeProgram('ps', 'alx', $bufr, PSI_DEBUG)) {

    UndefinedVariable

    Since: 2.8.0

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

    Example

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

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

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

                if ($processes['*'] > 0) {

    UndefinedVariable

    Since: 2.8.0

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

    Example

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

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

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

            if (CommonFunctions::rfts('/proc/pci', $strBuf, 0, 4096, false)) {

    UndefinedVariable

    Since: 2.8.0

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

    Example

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

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

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

            if (CommonFunctions::rfts('/proc/meminfo', $bufr, 1, 4096, false)) {

    UndefinedVariable

    Since: 2.8.0

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

    Example

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

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

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

                $lines = preg_split("/\n/", $bufr, -1, PREG_SPLIT_NO_EMPTY);

    UndefinedVariable

    Since: 2.8.0

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

    Example

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

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

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

                        $processes['*']++;

    UndefinedVariable

    Since: 2.8.0

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

    Example

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

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

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

                            $processes[$state] = 1;

    UndefinedVariable

    Since: 2.8.0

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

    Example

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

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

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

                if (CommonFunctions::rfts('/var/log/messages', $buf)) {

    UndefinedVariable

    Since: 2.8.0

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

    Example

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

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

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

                $this->sys->setDistribution($ret);

    UndefinedVariable

    Since: 2.8.0

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

    Example

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

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

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

                $processors = preg_split('/\s?\n\s?\n/', trim($bufr));

    UndefinedVariable

    Since: 2.8.0

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

    Example

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

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

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

                if (CommonFunctions::readenv('SERVER_NAME', $hnm)) $this->sys->setHostname($hnm);

    UndefinedVariable

    Since: 2.8.0

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

    Example

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

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

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

                   $this->sys->setKernel($ret.' ('.$branch.')');

    UndefinedVariable

    Since: 2.8.0

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

    Example

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

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

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

            if (CommonFunctions::executeProgram('ifconfig', '-a', $bufr, PSI_DEBUG)) {

    UndefinedVariable

    Since: 2.8.0

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

    Example

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

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

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

            if (CommonFunctions::rfts('/proc/cpuinfo', $bufr, 0, 4096, false)) {

    UndefinedVariable

    Since: 2.8.0

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

    Example

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

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

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

                $lines = preg_split("/\n/", $bufr, -1, PREG_SPLIT_NO_EMPTY);

    UndefinedVariable

    Since: 2.8.0

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

    Example

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

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

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

            if (CommonFunctions::executeProgram('uptime', '', $buf)) {

    UndefinedVariable

    Since: 2.8.0

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

    Example

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

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

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

                if (CommonFunctions::executeProgram('uname', '-n', $result, PSI_DEBUG)) {

    UndefinedVariable

    Since: 2.8.0

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

    Example

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

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

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

                $ar_buf = preg_split('/\s+/', trim($bufr));

    UndefinedVariable

    Since: 2.8.0

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

    Example

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

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

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

                $processes['*'] = 0;

    UndefinedVariable

    Since: 2.8.0

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

    Example

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

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

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

                } elseif (preg_match("/up (\d+):(\d+),/", $buf, $ar_buf)) {

    UndefinedVariable

    Since: 2.8.0

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

    Example

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

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

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

                if (preg_match("/load averages: (.*), (.*), (.*)$/", $buf, $ar_buf)) {

    UndefinedVariable

    Since: 2.8.0

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

    Example

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

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

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

            if (CommonFunctions::executeProgram('uname', '-rvm', $ret)) {

    UndefinedVariable

    Since: 2.8.0

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

    Example

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

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

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

            if (CommonFunctions::executeProgram('uname', '-sr', $ret))

    UndefinedVariable

    Since: 2.8.0

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

    Example

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

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

    Missing class import via use statement (line '111', column '28').
    Open

                    $dev = new CpuDevice();

    MissingImport

    Since: 2.7.0

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

    Example

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

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

    Missing class import via use statement (line '288', column '32').
    Open

                        $dev = new NetDevice();

    MissingImport

    Since: 2.7.0

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

    Example

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

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

    Missing class import via use statement (line '137', column '27').
    Open

                   $dev = new HWDevice();

    MissingImport

    Since: 2.7.0

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

    Example

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

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

    Missing class import via use statement (line '67', column '28').
    Open

                    $dev = new CpuDevice();

    MissingImport

    Since: 2.7.0

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

    Example

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

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

    Avoid using static access to class 'CommonFunctions' in method '_distro'.
    Open

            if (CommonFunctions::executeProgram('uname', '-sr', $ret))

    StaticAccess

    Since: 1.4.0

    Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

    Example

    class Foo
    {
        public function bar()
        {
            Bar::baz();
        }
    }

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

    Avoid using static access to class 'CommonFunctions' in method '_memory'.
    Open

            if (CommonFunctions::rfts('/proc/meminfo', $bufr, 1, 4096, false)) {

    StaticAccess

    Since: 1.4.0

    Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

    Example

    class Foo
    {
        public function bar()
        {
            Bar::baz();
        }
    }

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

    Avoid using static access to class 'Parser' in method '_pci'.
    Open

            if (!(isset($arrResults) && is_array($arrResults)) && ($results = Parser::lspci())) {

    StaticAccess

    Since: 1.4.0

    Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

    Example

    class Foo
    {
        public function bar()
        {
            Bar::baz();
        }
    }

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

    Avoid using static access to class 'Parser' in method '_filesystems'.
    Open

            $arrResult = Parser::df("-P 2>/dev/null");

    StaticAccess

    Since: 1.4.0

    Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

    Example

    class Foo
    {
        public function bar()
        {
            Bar::baz();
        }
    }

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

    Avoid using static access to class 'CommonFunctions' in method '_uptime'.
    Open

            if (CommonFunctions::executeProgram('uptime', '', $buf)) {

    StaticAccess

    Since: 1.4.0

    Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

    Example

    class Foo
    {
        public function bar()
        {
            Bar::baz();
        }
    }

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

    Avoid using static access to class 'CommonFunctions' in method '_hostname'.
    Open

                if (CommonFunctions::readenv('SERVER_NAME', $hnm)) $this->sys->setHostname($hnm);

    StaticAccess

    Since: 1.4.0

    Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

    Example

    class Foo
    {
        public function bar()
        {
            Bar::baz();
        }
    }

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

    Avoid using static access to class 'CommonFunctions' in method '_loadavg'.
    Open

            if (CommonFunctions::executeProgram('uptime', '', $buf)) {

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

            } else {
                if (CommonFunctions::executeProgram('uname', '-n', $result, PSI_DEBUG)) {
                    $ip = gethostbyname($result);
                    if ($ip != $result) {
                        $this->sys->setHostname(gethostbyaddr($ip));

    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 'CommonFunctions' in method '_kernel'.
    Open

            if (CommonFunctions::executeProgram('uname', '-rvm', $ret)) {

    StaticAccess

    Since: 1.4.0

    Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

    Example

    class Foo
    {
        public function bar()
        {
            Bar::baz();
        }
    }

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

    Avoid using static access to class 'CommonFunctions' in method '_processes'.
    Open

            if (CommonFunctions::executeProgram('ps', 'alx', $bufr, PSI_DEBUG)) {

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

                        } else {
                            $processes[$state] = 1;
                        }

    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 'CommonFunctions' in method '_cpuinfo'.
    Open

            if (CommonFunctions::rfts('/proc/cpuinfo', $bufr, 0, 4096, false)) {

    StaticAccess

    Since: 1.4.0

    Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

    Example

    class Foo
    {
        public function bar()
        {
            Bar::baz();
        }
    }

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

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

        protected function _pci()
        {
            if (CommonFunctions::rfts('/proc/pci', $strBuf, 0, 4096, false)) {
                $arrLines = preg_split("/\n/", $strBuf, -1, PREG_SPLIT_NO_EMPTY);
                $arrResults = array();

    IfStatementAssignment

    Since: 2.7.0

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

    Example

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

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

    Avoid using static access to class 'CommonFunctions' in method '_pci'.
    Open

            if (CommonFunctions::rfts('/proc/pci', $strBuf, 0, 4096, false)) {

    StaticAccess

    Since: 1.4.0

    Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

    Example

    class Foo
    {
        public function bar()
        {
            Bar::baz();
        }
    }

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

    Avoid using static access to class 'CommonFunctions' in method 'readdmesg'.
    Open

                if (CommonFunctions::rfts('/var/log/messages', $buf)) {

    StaticAccess

    Since: 1.4.0

    Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

    Example

    class Foo
    {
        public function bar()
        {
            Bar::baz();
        }
    }

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

    Avoid using static access to class 'CommonFunctions' in method '_network'.
    Open

            if (CommonFunctions::executeProgram('ifconfig', '-a', $bufr, PSI_DEBUG)) {

    StaticAccess

    Since: 1.4.0

    Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

    Example

    class Foo
    {
        public function bar()
        {
            Bar::baz();
        }
    }

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

    Avoid using static access to class 'CommonFunctions' in method '_hostname'.
    Open

                if (CommonFunctions::executeProgram('uname', '-n', $result, PSI_DEBUG)) {

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

                } else {
                    $this->_dmesg = array();
                }

    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

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

        protected function _processes()
        {
            if (CommonFunctions::executeProgram('ps', 'alx', $bufr, PSI_DEBUG)) {
                $lines = preg_split("/\n/", $bufr, -1, PREG_SPLIT_NO_EMPTY);
                $processes['*'] = 0;
    Severity: Major
    Found in phpsysinfo/includes/os/class.Minix.inc.php and 2 other locations - About 5 hrs to fix
    phpsysinfo/includes/os/class.FreeBSD.inc.php on lines 162..184
    phpsysinfo/includes/os/class.NetBSD.inc.php on lines 165..187

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

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

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

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

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

    Refactorings

    Further Reading

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

        public function build()
        {
            $this->error->addError("WARN", "The Minix version of phpSysInfo is a work in progress, some things currently don't work");
            if (!$this->blockname || $this->blockname==='vitals') {
                $this->_distro();
    Severity: Major
    Found in phpsysinfo/includes/os/class.Minix.inc.php and 1 other location - About 5 hrs to fix
    phpsysinfo/includes/os/class.SunOS.inc.php on lines 457..482

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

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

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

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

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

    Refactorings

    Further Reading

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

                foreach ($arrLines as $strLine) {
                   $arrParams = preg_split('/\s+/', trim($strLine), 4);
                   if (count($arrParams) == 4)
                      $strName = $arrParams[3];
                   else
    Severity: Major
    Found in phpsysinfo/includes/os/class.Minix.inc.php and 1 other location - About 1 hr to fix
    phpsysinfo/includes/class.Parser.inc.php on lines 39..49

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

    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

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

        private function _hostname()
        {
            if (PSI_USE_VHOST === true) {
                if (CommonFunctions::readenv('SERVER_NAME', $hnm)) $this->sys->setHostname($hnm);
            } else {
    Severity: Major
    Found in phpsysinfo/includes/os/class.Minix.inc.php and 3 other locations - About 1 hr to fix
    phpsysinfo/includes/os/class.Haiku.inc.php on lines 209..221
    phpsysinfo/includes/os/class.QNX.inc.php on lines 126..138
    phpsysinfo/includes/os/class.SunOS.inc.php on lines 129..141

    Duplicated Code

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

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

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

    Tuning

    This issue has a mass of 113.

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

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

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

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

    Refactorings

    Further Reading

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

    class Minix extends OS

    The property $_dmesg is not named in camelCase.
    Open

    class Minix extends OS
    {
        /**
         * content of the syslog
         *

    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 $_n. Configured minimum length is 3.
    Open

                    $_n = ""; $_f = ""; $_m = ""; $_s = "";

    ShortVariable

    Since: 0.2

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

    Example

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

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

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

                    $_n = ""; $_f = ""; $_m = ""; $_s = "";

    ShortVariable

    Since: 0.2

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

    Example

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

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

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

                    $ip = gethostbyname($result);

    ShortVariable

    Since: 0.2

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

    Example

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

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

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

                    $_n = ""; $_f = ""; $_m = ""; $_s = "";

    ShortVariable

    Since: 0.2

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

    Example

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

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

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

                    $_n = ""; $_f = ""; $_m = ""; $_s = "";

    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

    Terminating statement must be indented to the same level as the CASE body
    Open

                                break;

    Terminating statement must be indented to the same level as the CASE body
    Open

                                break;

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

        private function _hostname()

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

        private function _filesystems()

    Each PHP statement must be on a line by itself
    Open

                    $_n = ""; $_f = ""; $_m = ""; $_s = "";

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

        private function _kernel()

    Terminating statement must be indented to the same level as the CASE body
    Open

                                break;

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

        protected function _pci()

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

        private function _memory()

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

        private $_dmesg = null;

    Terminating statement must be indented to the same level as the CASE body
    Open

                                break;

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

        private function _uptime()

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

        private function _loadavg()

    Terminating statement must be indented to the same level as the CASE body
    Open

                                break;

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

        private function _network()

    Each PHP statement must be on a line by itself
    Open

                    $_n = ""; $_f = ""; $_m = ""; $_s = "";

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

        protected function _processes()

    Terminating statement must be indented to the same level as the CASE body
    Open

                                break;

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

        protected function _cpuinfo()

    Each PHP statement must be on a line by itself
    Open

                    $_n = ""; $_f = ""; $_m = ""; $_s = "";

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

        protected function _distro()

    Terminating statement must be indented to the same level as the CASE body
    Open

                                break;

    Inline control structures are not allowed
    Open

                if (CommonFunctions::readenv('SERVER_NAME', $hnm)) $this->sys->setHostname($hnm);

    Inline control structures are not allowed
    Open

                   else

    Line exceeds 120 characters; contains 132 characters
    Open

     * @license   http://opensource.org/licenses/gpl-2.0.php GNU General Public License version 2, or (at your option) any later version

    Inline control structures are not allowed
    Open

                   if (count($arrParams) == 4)

    Inline control structures are not allowed
    Open

                    if ($_m != "") $_n.=" Model ".$_m;

    Inline control structures are not allowed
    Open

                    if ($_f != "") $_n.=" Family ".$_f;

    Inline control structures are not allowed
    Open

                else

    Line exceeds 120 characters; contains 132 characters
    Open

     * @license   http://opensource.org/licenses/gpl-2.0.php GNU General Public License version 2, or (at your option) any later version

    Inline control structures are not allowed
    Open

                    if ($_s != "") $_n.=" Stepping ".$_s;

    Inline control structures are not allowed
    Open

            } else

    Inline control structures are not allowed
    Open

                    if ($_n == "") $_n="CPU";

    Inline control structures are not allowed
    Open

                if (isset($branch))

    Inline control structures are not allowed
    Open

                        if ($state == 'W') $state = 'D'; //linux format

    Inline control structures are not allowed
    Open

            if (CommonFunctions::executeProgram('uname', '-sr', $ret))

    Line exceeds 120 characters; contains 130 characters
    Open

            $this->error->addError("WARN", "The Minix version of phpSysInfo is a work in progress, some things currently don't work");

    Inline control structures are not allowed
    Open

                        elseif ($state == 'D') $state = 'd'; //invalid

    Inline control structures are not allowed
    Open

            else

    Line indented incorrectly; expected at least 16 spaces, found 15
    Open

                   $arrResults[] = $dev;

    Line indented incorrectly; expected 28 spaces, found 24
    Open

                            case 'flags':

    Line indented incorrectly; expected at least 36 spaces, found 32
    Open

                                    $dev->setVirt("vmx");

    Line indented incorrectly; expected 28 spaces, found 24
    Open

                            case 'vendor_id':

    Line indented incorrectly; expected 16 spaces, found 15
    Open

                   else

    Expected 1 space after ELSE keyword; newline found
    Open

                   else

    Expected 1 space after ELSE keyword; newline found
    Open

                else

    Line indented incorrectly; expected at least 32 spaces, found 28
    Open

                                $_f = $arrBuff[1];

    Line indented incorrectly; expected at least 32 spaces, found 28
    Open

                                $_s = $arrBuff[1];

    Line indented incorrectly; expected at least 32 spaces, found 28
    Open

                                $_n = $arrBuff[1];

    Line indented incorrectly; expected at least 32 spaces, found 28
    Open

                                $dev->setCpuSpeed($arrBuff[1]);

    Line indented incorrectly; expected at least 16 spaces, found 15
    Open

                   $arrParams = preg_split('/\s+/', trim($strLine), 4);

    Expected 1 space after ELSE keyword; newline found
    Open

            else

    Line indented incorrectly; expected 32 spaces, found 28
    Open

                                } elseif (preg_match("/ svm/", $arrBuff[1])) {

    Line indented incorrectly; expected 28 spaces, found 24
    Open

                            case 'model':

    Line indented incorrectly; expected 28 spaces, found 24
    Open

                            case 'stepping':

    Line indented incorrectly; expected 32 spaces, found 28
    Open

                                if (preg_match("/ vmx/", $arrBuff[1])) {

    Line indented incorrectly; expected 32 spaces, found 28
    Open

                                }

    Line indented incorrectly; expected at least 32 spaces, found 28
    Open

                                $dev->setVendorId($arrBuff[1]);

    Expected 1 space after ELSE keyword; newline found
    Open

            } else

    Line indented incorrectly; expected at least 16 spaces, found 15
    Open

                   $strName = preg_replace('/\(.*\)/', '', $strName);

    Line indented incorrectly; expected 28 spaces, found 24
    Open

                            case 'cpu mhz':

    Line indented incorrectly; expected at least 36 spaces, found 32
    Open

                                    $dev->setVirt("svm");

    Line indented incorrectly; expected 28 spaces, found 24
    Open

                            case 'model name':

    Line indented incorrectly; expected at least 32 spaces, found 28
    Open

                                $_m = $arrBuff[1];

    Line indented incorrectly; expected at least 16 spaces, found 15
    Open

                   if (count($arrParams) == 4)

    Line indented incorrectly; expected 28 spaces, found 24
    Open

                            case 'cpu family':

    Line indented incorrectly; expected at least 16 spaces, found 15
    Open

                   $dev = new HWDevice();

    Line indented incorrectly; expected at least 16 spaces, found 15
    Open

                   $dev->setName($strName);

    The variable $_m is not named in camelCase.
    Open

        protected function _cpuinfo()
        {
            if (CommonFunctions::rfts('/proc/cpuinfo', $bufr, 0, 4096, false)) {
                $processors = preg_split('/\s?\n\s?\n/', trim($bufr));
                foreach ($processors as $processor) {

    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 $_n is not named in camelCase.
    Open

        protected function _cpuinfo()
        {
            if (CommonFunctions::rfts('/proc/cpuinfo', $bufr, 0, 4096, false)) {
                $processors = preg_split('/\s?\n\s?\n/', trim($bufr));
                foreach ($processors as $processor) {

    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 $ar_buf is not named in camelCase.
    Open

        private function _uptime()
        {
            if (CommonFunctions::executeProgram('uptime', '', $buf)) {
                if (preg_match("/up (\d+) day[s]?,\s*(\d+):(\d+),/", $buf, $ar_buf)) {
                    $min = $ar_buf[3];

    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 $ar_buf is not named in camelCase.
    Open

        private function _memory()
        {
            if (CommonFunctions::rfts('/proc/meminfo', $bufr, 1, 4096, false)) {
                $ar_buf = preg_split('/\s+/', trim($bufr));
                if (count($ar_buf) >= 5) {

    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 $ar_buf is not named in camelCase.
    Open

        private function _memory()
        {
            if (CommonFunctions::rfts('/proc/meminfo', $bufr, 1, 4096, false)) {
                $ar_buf = preg_split('/\s+/', trim($bufr));
                if (count($ar_buf) >= 5) {

    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 $ar_buf is not named in camelCase.
    Open

        protected function _cpuinfo()
        {
            if (CommonFunctions::rfts('/proc/cpuinfo', $bufr, 0, 4096, false)) {
                $processors = preg_split('/\s?\n\s?\n/', trim($bufr));
                foreach ($processors as $processor) {

    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 $_f is not named in camelCase.
    Open

        protected function _cpuinfo()
        {
            if (CommonFunctions::rfts('/proc/cpuinfo', $bufr, 0, 4096, false)) {
                $processors = preg_split('/\s?\n\s?\n/', trim($bufr));
                foreach ($processors as $processor) {

    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 $ar_buf is not named in camelCase.
    Open

        protected function _cpuinfo()
        {
            if (CommonFunctions::rfts('/proc/cpuinfo', $bufr, 0, 4096, false)) {
                $processors = preg_split('/\s?\n\s?\n/', trim($bufr));
                foreach ($processors as $processor) {

    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 $ar_buf is not named in camelCase.
    Open

        private function _memory()
        {
            if (CommonFunctions::rfts('/proc/meminfo', $bufr, 1, 4096, false)) {
                $ar_buf = preg_split('/\s+/', trim($bufr));
                if (count($ar_buf) >= 5) {

    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 $ar_buf is not named in camelCase.
    Open

        protected function _cpuinfo()
        {
            if (CommonFunctions::rfts('/proc/cpuinfo', $bufr, 0, 4096, false)) {
                $processors = preg_split('/\s?\n\s?\n/', trim($bufr));
                foreach ($processors as $processor) {

    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 $ar_buf is not named in camelCase.
    Open

        private function _network()
        {
            if (CommonFunctions::executeProgram('ifconfig', '-a', $bufr, PSI_DEBUG)) {
                $lines = preg_split("/\n/", $bufr, -1, PREG_SPLIT_NO_EMPTY);
                foreach ($lines as $line) {

    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 $ar_buf is not named in camelCase.
    Open

        private function _network()
        {
            if (CommonFunctions::executeProgram('ifconfig', '-a', $bufr, PSI_DEBUG)) {
                $lines = preg_split("/\n/", $bufr, -1, PREG_SPLIT_NO_EMPTY);
                foreach ($lines as $line) {

    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 $_n is not named in camelCase.
    Open

        protected function _cpuinfo()
        {
            if (CommonFunctions::rfts('/proc/cpuinfo', $bufr, 0, 4096, false)) {
                $processors = preg_split('/\s?\n\s?\n/', trim($bufr));
                foreach ($processors as $processor) {

    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 $ar_buf is not named in camelCase.
    Open

        private function _uptime()
        {
            if (CommonFunctions::executeProgram('uptime', '', $buf)) {
                if (preg_match("/up (\d+) day[s]?,\s*(\d+):(\d+),/", $buf, $ar_buf)) {
                    $min = $ar_buf[3];

    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 $ar_buf is not named in camelCase.
    Open

        private function _memory()
        {
            if (CommonFunctions::rfts('/proc/meminfo', $bufr, 1, 4096, false)) {
                $ar_buf = preg_split('/\s+/', trim($bufr));
                if (count($ar_buf) >= 5) {

    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 $ar_buf is not named in camelCase.
    Open

        private function _memory()
        {
            if (CommonFunctions::rfts('/proc/meminfo', $bufr, 1, 4096, false)) {
                $ar_buf = preg_split('/\s+/', trim($bufr));
                if (count($ar_buf) >= 5) {

    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 $ar_buf is not named in camelCase.
    Open

        private function _memory()
        {
            if (CommonFunctions::rfts('/proc/meminfo', $bufr, 1, 4096, false)) {
                $ar_buf = preg_split('/\s+/', trim($bufr));
                if (count($ar_buf) >= 5) {

    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 $ar_buf is not named in camelCase.
    Open

        private function _uptime()
        {
            if (CommonFunctions::executeProgram('uptime', '', $buf)) {
                if (preg_match("/up (\d+) day[s]?,\s*(\d+):(\d+),/", $buf, $ar_buf)) {
                    $min = $ar_buf[3];

    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 $ar_buf is not named in camelCase.
    Open

        private function _memory()
        {
            if (CommonFunctions::rfts('/proc/meminfo', $bufr, 1, 4096, false)) {
                $ar_buf = preg_split('/\s+/', trim($bufr));
                if (count($ar_buf) >= 5) {

    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 $_f is not named in camelCase.
    Open

        protected function _cpuinfo()
        {
            if (CommonFunctions::rfts('/proc/cpuinfo', $bufr, 0, 4096, false)) {
                $processors = preg_split('/\s?\n\s?\n/', trim($bufr));
                foreach ($processors as $processor) {

    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 $_m is not named in camelCase.
    Open

        protected function _cpuinfo()
        {
            if (CommonFunctions::rfts('/proc/cpuinfo', $bufr, 0, 4096, false)) {
                $processors = preg_split('/\s?\n\s?\n/', trim($bufr));
                foreach ($processors as $processor) {

    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 $ar_buf is not named in camelCase.
    Open

        private function _kernel()
        {
            if (CommonFunctions::executeProgram('uname', '-rvm', $ret)) {
                foreach ($this->readdmesg() as $line) {
                    if (preg_match('/kernel: MINIX (\d+\.\d+\.\d+)\. \((.+)\)/', $line, $ar_buf)) {

    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 $ar_buf is not named in camelCase.
    Open

        private function _uptime()
        {
            if (CommonFunctions::executeProgram('uptime', '', $buf)) {
                if (preg_match("/up (\d+) day[s]?,\s*(\d+):(\d+),/", $buf, $ar_buf)) {
                    $min = $ar_buf[3];

    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 $ar_buf is not named in camelCase.
    Open

        private function _uptime()
        {
            if (CommonFunctions::executeProgram('uptime', '', $buf)) {
                if (preg_match("/up (\d+) day[s]?,\s*(\d+):(\d+),/", $buf, $ar_buf)) {
                    $min = $ar_buf[3];

    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 $_n is not named in camelCase.
    Open

        protected function _cpuinfo()
        {
            if (CommonFunctions::rfts('/proc/cpuinfo', $bufr, 0, 4096, false)) {
                $processors = preg_split('/\s?\n\s?\n/', trim($bufr));
                foreach ($processors as $processor) {

    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 $ar_buf is not named in camelCase.
    Open

        private function _uptime()
        {
            if (CommonFunctions::executeProgram('uptime', '', $buf)) {
                if (preg_match("/up (\d+) day[s]?,\s*(\d+):(\d+),/", $buf, $ar_buf)) {
                    $min = $ar_buf[3];

    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 $_n is not named in camelCase.
    Open

        protected function _cpuinfo()
        {
            if (CommonFunctions::rfts('/proc/cpuinfo', $bufr, 0, 4096, false)) {
                $processors = preg_split('/\s?\n\s?\n/', trim($bufr));
                foreach ($processors as $processor) {

    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 $ar_buf is not named in camelCase.
    Open

        private function _loadavg()
        {
            if (CommonFunctions::executeProgram('uptime', '', $buf)) {
                if (preg_match("/load averages: (.*), (.*), (.*)$/", $buf, $ar_buf)) {
                    $this->sys->setLoad($ar_buf[1].' '.$ar_buf[2].' '.$ar_buf[3]);

    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 $ar_buf is not named in camelCase.
    Open

        private function _network()
        {
            if (CommonFunctions::executeProgram('ifconfig', '-a', $bufr, PSI_DEBUG)) {
                $lines = preg_split("/\n/", $bufr, -1, PREG_SPLIT_NO_EMPTY);
                foreach ($lines as $line) {

    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 $_s is not named in camelCase.
    Open

        protected function _cpuinfo()
        {
            if (CommonFunctions::rfts('/proc/cpuinfo', $bufr, 0, 4096, false)) {
                $processors = preg_split('/\s?\n\s?\n/', trim($bufr));
                foreach ($processors as $processor) {

    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 $_s is not named in camelCase.
    Open

        protected function _cpuinfo()
        {
            if (CommonFunctions::rfts('/proc/cpuinfo', $bufr, 0, 4096, false)) {
                $processors = preg_split('/\s?\n\s?\n/', trim($bufr));
                foreach ($processors as $processor) {

    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 $_n is not named in camelCase.
    Open

        protected function _cpuinfo()
        {
            if (CommonFunctions::rfts('/proc/cpuinfo', $bufr, 0, 4096, false)) {
                $processors = preg_split('/\s?\n\s?\n/', trim($bufr));
                foreach ($processors as $processor) {

    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 $ar_buf is not named in camelCase.
    Open

        private function _loadavg()
        {
            if (CommonFunctions::executeProgram('uptime', '', $buf)) {
                if (preg_match("/load averages: (.*), (.*), (.*)$/", $buf, $ar_buf)) {
                    $this->sys->setLoad($ar_buf[1].' '.$ar_buf[2].' '.$ar_buf[3]);

    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 $ar_buf is not named in camelCase.
    Open

        private function _loadavg()
        {
            if (CommonFunctions::executeProgram('uptime', '', $buf)) {
                if (preg_match("/load averages: (.*), (.*), (.*)$/", $buf, $ar_buf)) {
                    $this->sys->setLoad($ar_buf[1].' '.$ar_buf[2].' '.$ar_buf[3]);

    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 $ar_buf is not named in camelCase.
    Open

        private function _memory()
        {
            if (CommonFunctions::rfts('/proc/meminfo', $bufr, 1, 4096, false)) {
                $ar_buf = preg_split('/\s+/', trim($bufr));
                if (count($ar_buf) >= 5) {

    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 $ar_buf is not named in camelCase.
    Open

        private function _memory()
        {
            if (CommonFunctions::rfts('/proc/meminfo', $bufr, 1, 4096, false)) {
                $ar_buf = preg_split('/\s+/', trim($bufr));
                if (count($ar_buf) >= 5) {

    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 $_m is not named in camelCase.
    Open

        protected function _cpuinfo()
        {
            if (CommonFunctions::rfts('/proc/cpuinfo', $bufr, 0, 4096, false)) {
                $processors = preg_split('/\s?\n\s?\n/', trim($bufr));
                foreach ($processors as $processor) {

    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 $_f is not named in camelCase.
    Open

        protected function _cpuinfo()
        {
            if (CommonFunctions::rfts('/proc/cpuinfo', $bufr, 0, 4096, false)) {
                $processors = preg_split('/\s?\n\s?\n/', trim($bufr));
                foreach ($processors as $processor) {

    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 $_m is not named in camelCase.
    Open

        protected function _cpuinfo()
        {
            if (CommonFunctions::rfts('/proc/cpuinfo', $bufr, 0, 4096, false)) {
                $processors = preg_split('/\s?\n\s?\n/', trim($bufr));
                foreach ($processors as $processor) {

    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 $_s is not named in camelCase.
    Open

        protected function _cpuinfo()
        {
            if (CommonFunctions::rfts('/proc/cpuinfo', $bufr, 0, 4096, false)) {
                $processors = preg_split('/\s?\n\s?\n/', trim($bufr));
                foreach ($processors as $processor) {

    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 $_n is not named in camelCase.
    Open

        protected function _cpuinfo()
        {
            if (CommonFunctions::rfts('/proc/cpuinfo', $bufr, 0, 4096, false)) {
                $processors = preg_split('/\s?\n\s?\n/', trim($bufr));
                foreach ($processors as $processor) {

    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 $_f is not named in camelCase.
    Open

        protected function _cpuinfo()
        {
            if (CommonFunctions::rfts('/proc/cpuinfo', $bufr, 0, 4096, false)) {
                $processors = preg_split('/\s?\n\s?\n/', trim($bufr));
                foreach ($processors as $processor) {

    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 $_n is not named in camelCase.
    Open

        protected function _cpuinfo()
        {
            if (CommonFunctions::rfts('/proc/cpuinfo', $bufr, 0, 4096, false)) {
                $processors = preg_split('/\s?\n\s?\n/', trim($bufr));
                foreach ($processors as $processor) {

    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 $ar_buf is not named in camelCase.
    Open

        private function _loadavg()
        {
            if (CommonFunctions::executeProgram('uptime', '', $buf)) {
                if (preg_match("/load averages: (.*), (.*), (.*)$/", $buf, $ar_buf)) {
                    $this->sys->setLoad($ar_buf[1].' '.$ar_buf[2].' '.$ar_buf[3]);

    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 $ar_buf is not named in camelCase.
    Open

        private function _memory()
        {
            if (CommonFunctions::rfts('/proc/meminfo', $bufr, 1, 4096, false)) {
                $ar_buf = preg_split('/\s+/', trim($bufr));
                if (count($ar_buf) >= 5) {

    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 $_s is not named in camelCase.
    Open

        protected function _cpuinfo()
        {
            if (CommonFunctions::rfts('/proc/cpuinfo', $bufr, 0, 4096, false)) {
                $processors = preg_split('/\s?\n\s?\n/', trim($bufr));
                foreach ($processors as $processor) {

    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 $ar_buf is not named in camelCase.
    Open

        private function _uptime()
        {
            if (CommonFunctions::executeProgram('uptime', '', $buf)) {
                if (preg_match("/up (\d+) day[s]?,\s*(\d+):(\d+),/", $buf, $ar_buf)) {
                    $min = $ar_buf[3];

    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 $ar_buf is not named in camelCase.
    Open

        protected function _processes()
        {
            if (CommonFunctions::executeProgram('ps', 'alx', $bufr, PSI_DEBUG)) {
                $lines = preg_split("/\n/", $bufr, -1, PREG_SPLIT_NO_EMPTY);
                $processes['*'] = 0;

    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 $_n is not named in camelCase.
    Open

        protected function _cpuinfo()
        {
            if (CommonFunctions::rfts('/proc/cpuinfo', $bufr, 0, 4096, false)) {
                $processors = preg_split('/\s?\n\s?\n/', trim($bufr));
                foreach ($processors as $processor) {

    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 $ar_buf is not named in camelCase.
    Open

        private function _kernel()
        {
            if (CommonFunctions::executeProgram('uname', '-rvm', $ret)) {
                foreach ($this->readdmesg() as $line) {
                    if (preg_match('/kernel: MINIX (\d+\.\d+\.\d+)\. \((.+)\)/', $line, $ar_buf)) {

    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 $ar_buf is not named in camelCase.
    Open

        private function _memory()
        {
            if (CommonFunctions::rfts('/proc/meminfo', $bufr, 1, 4096, false)) {
                $ar_buf = preg_split('/\s+/', trim($bufr));
                if (count($ar_buf) >= 5) {

    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 $ar_buf is not named in camelCase.
    Open

        protected function _processes()
        {
            if (CommonFunctions::executeProgram('ps', 'alx', $bufr, PSI_DEBUG)) {
                $lines = preg_split("/\n/", $bufr, -1, PREG_SPLIT_NO_EMPTY);
                $processes['*'] = 0;

    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 _loadavg is not named in camelCase.
    Open

        private function _loadavg()
        {
            if (CommonFunctions::executeProgram('uptime', '', $buf)) {
                if (preg_match("/load averages: (.*), (.*), (.*)$/", $buf, $ar_buf)) {
                    $this->sys->setLoad($ar_buf[1].' '.$ar_buf[2].' '.$ar_buf[3]);

    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 _filesystems is not named in camelCase.
    Open

        private function _filesystems()
        {
            $arrResult = Parser::df("-P 2>/dev/null");
            foreach ($arrResult as $dev) {
                $this->sys->setDiskDevices($dev);

    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 _network is not named in camelCase.
    Open

        private function _network()
        {
            if (CommonFunctions::executeProgram('ifconfig', '-a', $bufr, PSI_DEBUG)) {
                $lines = preg_split("/\n/", $bufr, -1, PREG_SPLIT_NO_EMPTY);
                foreach ($lines as $line) {

    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 _memory is not named in camelCase.
    Open

        private function _memory()
        {
            if (CommonFunctions::rfts('/proc/meminfo', $bufr, 1, 4096, false)) {
                $ar_buf = preg_split('/\s+/', trim($bufr));
                if (count($ar_buf) >= 5) {

    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 _distro is not named in camelCase.
    Open

        protected function _distro()
        {
            if (CommonFunctions::executeProgram('uname', '-sr', $ret))
                $this->sys->setDistribution($ret);
            else

    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 _kernel is not named in camelCase.
    Open

        private function _kernel()
        {
            if (CommonFunctions::executeProgram('uname', '-rvm', $ret)) {
                foreach ($this->readdmesg() as $line) {
                    if (preg_match('/kernel: MINIX (\d+\.\d+\.\d+)\. \((.+)\)/', $line, $ar_buf)) {

    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 _pci is not named in camelCase.
    Open

        protected function _pci()
        {
            if (CommonFunctions::rfts('/proc/pci', $strBuf, 0, 4096, false)) {
                $arrLines = preg_split("/\n/", $strBuf, -1, PREG_SPLIT_NO_EMPTY);
                $arrResults = array();

    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 _processes is not named in camelCase.
    Open

        protected function _processes()
        {
            if (CommonFunctions::executeProgram('ps', 'alx', $bufr, PSI_DEBUG)) {
                $lines = preg_split("/\n/", $bufr, -1, PREG_SPLIT_NO_EMPTY);
                $processes['*'] = 0;

    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 _hostname is not named in camelCase.
    Open

        private function _hostname()
        {
            if (PSI_USE_VHOST === true) {
                if (CommonFunctions::readenv('SERVER_NAME', $hnm)) $this->sys->setHostname($hnm);
            } else {

    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 _uptime is not named in camelCase.
    Open

        private function _uptime()
        {
            if (CommonFunctions::executeProgram('uptime', '', $buf)) {
                if (preg_match("/up (\d+) day[s]?,\s*(\d+):(\d+),/", $buf, $ar_buf)) {
                    $min = $ar_buf[3];

    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 _cpuinfo is not named in camelCase.
    Open

        protected function _cpuinfo()
        {
            if (CommonFunctions::rfts('/proc/cpuinfo', $bufr, 0, 4096, false)) {
                $processors = preg_split('/\s?\n\s?\n/', trim($bufr));
                foreach ($processors as $processor) {

    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