mambax7/extgallery

View on GitHub
class/pcltrace.lib.php

Summary

Maintainability
F
3 days
Test Coverage

Function TrDisplay has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
Open

    function TrDisplay()
    {
        global $g_pcl_trace_level;
        global $g_pcl_trace_mode;
        global $g_pcl_trace_filename;
Severity: Minor
Found in class/pcltrace.lib.php - About 3 hrs to fix

Cognitive Complexity

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

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

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

Further reading

Method TrDisplay has 72 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    function TrDisplay()
    {
        global $g_pcl_trace_level;
        global $g_pcl_trace_mode;
        global $g_pcl_trace_filename;
Severity: Major
Found in class/pcltrace.lib.php - About 2 hrs to fix

    File pcltrace.lib.php has 261 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    
    namespace XoopsModules\Extgallery;
    
    // --------------------------------------------------------------------------------
    Severity: Minor
    Found in class/pcltrace.lib.php - About 2 hrs to fix

      Method TrFctEnd has 36 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
          {
              global $g_pcl_trace_level;
              global $g_pcl_trace_mode;
              global $g_pcl_trace_filename;
      Severity: Minor
      Found in class/pcltrace.lib.php - About 1 hr to fix

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

            function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
            {
                global $g_pcl_trace_level;
                global $g_pcl_trace_mode;
                global $g_pcl_trace_filename;
        Severity: Minor
        Found in class/pcltrace.lib.php - About 1 hr to fix

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

              function PclTraceAction($p_entry)
              {
                  global $g_pcl_trace_level;
                  global $g_pcl_trace_mode;
                  global $g_pcl_trace_filename;
          Severity: Minor
          Found in class/pcltrace.lib.php - About 1 hr to fix

          Cognitive Complexity

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

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

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

          Further reading

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

              function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
          Severity: Minor
          Found in class/pcltrace.lib.php - About 35 mins to fix

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

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php - About 35 mins to fix

            Cognitive Complexity

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

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

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

            Further reading

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

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php - About 35 mins to fix

            Cognitive Complexity

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

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

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

            Further reading

            The function TrDisplay() has a Cyclomatic Complexity of 12. The configured cyclomatic complexity threshold is 10.
            Open

                function TrDisplay()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CyclomaticComplexity

            Since: 0.1

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

            Example

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

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

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

                    unset($g_pcl_trace_entries, $g_pcl_trace_name, $g_pcl_trace_index);
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            UndefinedVariable

            Since: 2.8.0

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

            Example

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

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

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

                    } else {
                        $g_pcl_trace_name .= ',' . $p_name;
                    }
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            ElseExpression

            Since: 1.4.0

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

            Example

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

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

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

                        } else {
                            echo $p_entry['message'] . ' [' . $p_entry['file'] . ', ' . $p_entry['line'] . ']<br>';
                        }
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            ElseExpression

            Since: 1.4.0

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

            Example

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

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

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

                            } else {
                                echo "<td width=10><div align=center><span style='font-size: x-small; font-family: $v_font; '>|</span></div></td>";
                            }
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            ElseExpression

            Since: 1.4.0

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

            Example

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

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

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

                    } else {
                        $g_pcl_trace_name = mb_substr($g_pcl_trace_name, 0, -mb_strlen($v_name));
                        $v_name           = mb_substr($v_name, -mb_strlen($v_name) + 1);
                    }
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            ElseExpression

            Since: 1.4.0

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

            Example

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

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

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

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            IfStatementAssignment

            Since: 2.7.0

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

            Example

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

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

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

                    global $g_pcl_trace_name;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            UnusedLocalVariable

            Since: 0.2

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

            Example

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

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

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

                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            UnusedLocalVariable

            Since: 0.2

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

            Example

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

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

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

                    global $g_pcl_trace_index;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            UnusedLocalVariable

            Since: 0.2

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

            Example

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

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

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

                    global $g_pcl_trace_name;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            UnusedLocalVariable

            Since: 0.2

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

            Example

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

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

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

                    global $g_pcl_trace_index;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            UnusedLocalVariable

            Since: 0.2

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

            Example

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

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

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

                    unset($g_pcl_trace_entries, $g_pcl_trace_name, $g_pcl_trace_index);
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            UnusedLocalVariable

            Since: 0.2

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

            Example

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

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

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

                    global $g_pcl_trace_name;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            UnusedLocalVariable

            Since: 0.2

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

            Example

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

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

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

                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            UnusedLocalVariable

            Since: 0.2

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

            Example

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

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

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

                    global $g_pcl_trace_index;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            UnusedLocalVariable

            Since: 0.2

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

            Example

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

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

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

                    global $g_pcl_trace_mode;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            UnusedLocalVariable

            Since: 0.2

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

            Example

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

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

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

                    $v_again = 0;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            UnusedLocalVariable

            Since: 0.2

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

            Example

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

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

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

                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            UnusedLocalVariable

            Since: 0.2

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

            Example

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

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

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

                    global $g_pcl_trace_entries;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            UnusedLocalVariable

            Since: 0.2

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

            Example

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

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

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

                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            UnusedLocalVariable

            Since: 0.2

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

            Example

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

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

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

                    global $g_pcl_trace_name;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            UnusedLocalVariable

            Since: 0.2

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

            Example

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

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

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

                    global $g_pcl_trace_mode;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            UnusedLocalVariable

            Since: 0.2

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

            Example

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

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

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

                    global $g_pcl_trace_name;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            UnusedLocalVariable

            Since: 0.2

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

            Example

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

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

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

                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            UnusedLocalVariable

            Since: 0.2

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

            Example

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

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

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

                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            UnusedLocalVariable

            Since: 0.2

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

            Example

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

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

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

                    global $g_pcl_trace_level;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            UnusedLocalVariable

            Since: 0.2

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

            Example

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

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

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

                    global $g_pcl_trace_entries;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            UnusedLocalVariable

            Since: 0.2

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

            Example

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

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

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

                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            UnusedLocalVariable

            Since: 0.2

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

            Example

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

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

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

                    global $g_pcl_trace_mode;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            UnusedLocalVariable

            Since: 0.2

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

            Example

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

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

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

                    global $g_pcl_trace_mode;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            UnusedLocalVariable

            Since: 0.2

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

            Example

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

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

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

                function TrMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Major
            Found in class/pcltrace.lib.php and 1 other location - About 5 hrs to fix
            class/pcltrace.lib.php on lines 290..316

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

            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

                function TrFctMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Major
            Found in class/pcltrace.lib.php and 1 other location - About 5 hrs to fix
            class/pcltrace.lib.php on lines 331..357

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

            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

                    if ('' != $p_message) {
                        $i                                  = \count($g_pcl_trace_entries);
                        $g_pcl_trace_entries[$i]['name']    = '';
                        $g_pcl_trace_entries[$i]['param']   = '';
                        $g_pcl_trace_entries[$i]['message'] = $p_message;
            Severity: Major
            Found in class/pcltrace.lib.php and 1 other location - About 2 hrs to fix
            class/pcltrace.lib.php on lines 252..261

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

            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

                    if ('' != $p_message) {
                        $i                                  = \count($g_pcl_trace_entries);
                        $g_pcl_trace_entries[$i]['name']    = '';
                        $g_pcl_trace_entries[$i]['param']   = '';
                        $g_pcl_trace_entries[$i]['message'] = $p_message;
            Severity: Major
            Found in class/pcltrace.lib.php and 1 other location - About 2 hrs to fix
            class/pcltrace.lib.php on lines 190..199

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

            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

            The parameter $p_message is not named in camelCase.
            Open

                function TrFctMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseParameterName

            Since: 0.2

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

            Example

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

            Source

            The parameter $p_message is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseParameterName

            Since: 0.2

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

            Example

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

            Source

            The parameter $p_line is not named in camelCase.
            Open

                function TrFctMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseParameterName

            Since: 0.2

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

            Example

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

            Source

            The parameter $p_level is not named in camelCase.
            Open

                function TrFctMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseParameterName

            Since: 0.2

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

            Example

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

            Source

            The parameter $p_level is not named in camelCase.
            Open

                function TrMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseParameterName

            Since: 0.2

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

            Example

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

            Source

            The parameter $p_message is not named in camelCase.
            Open

                function TrMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseParameterName

            Since: 0.2

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

            Example

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

            Source

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

                    $i                                  = \count($g_pcl_trace_entries);
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            ShortVariable

            Since: 0.2

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

            Example

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

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

            The parameter $p_entry is not named in camelCase.
            Open

                function PclTraceAction($p_entry)
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseParameterName

            Since: 0.2

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

            Example

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

            Source

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

                        $n = ($g_pcl_trace_entries[$i]['index'] + 1) * 10;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            ShortVariable

            Since: 0.2

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

            Example

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

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

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

                    $i                                  = \count($g_pcl_trace_entries);
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            ShortVariable

            Since: 0.2

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

            Example

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

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

            The parameter $p_return is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseParameterName

            Since: 0.2

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

            Example

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

            Source

            The parameter $p_line is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseParameterName

            Since: 0.2

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

            Example

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

            Source

            The parameter $p_line is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseParameterName

            Since: 0.2

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

            Example

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

            Source

            The parameter $p_level is not named in camelCase.
            Open

                function TrOn($p_level = 1, $p_mode = 'memory', $p_filename = 'trace.txt')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseParameterName

            Since: 0.2

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

            Example

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

            Source

            The parameter $p_param is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseParameterName

            Since: 0.2

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

            Example

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

            Source

            The parameter $p_file is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseParameterName

            Since: 0.2

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

            Example

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

            Source

            The parameter $p_file is not named in camelCase.
            Open

                function TrMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseParameterName

            Since: 0.2

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

            Example

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

            Source

            The parameter $p_mode is not named in camelCase.
            Open

                function TrOn($p_level = 1, $p_mode = 'memory', $p_filename = 'trace.txt')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseParameterName

            Since: 0.2

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

            Example

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

            Source

            The parameter $p_file is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseParameterName

            Since: 0.2

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

            Example

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

            Source

            The parameter $p_file is not named in camelCase.
            Open

                function TrFctMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseParameterName

            Since: 0.2

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

            Example

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

            Source

            The parameter $p_name is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseParameterName

            Since: 0.2

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

            Example

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

            Source

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

                    $i                                  = \count($g_pcl_trace_entries);
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            ShortVariable

            Since: 0.2

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

            Example

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

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

            The parameter $p_line is not named in camelCase.
            Open

                function TrMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseParameterName

            Since: 0.2

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

            Example

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

            Source

            The parameter $p_filename is not named in camelCase.
            Open

                function TrOn($p_level = 1, $p_mode = 'memory', $p_filename = 'trace.txt')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseParameterName

            Since: 0.2

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

            Example

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

            Source

            The parameter $p_message is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseParameterName

            Since: 0.2

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

            Example

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

            Source

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

                        $i                                  = \count($g_pcl_trace_entries);
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            ShortVariable

            Since: 0.2

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

            Example

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

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

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

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

            Line exceeds 120 characters; contains 184 characters
            Open

                                echo "<td><span style='font-size: x-small; font-family: $v_font; '>" . $g_pcl_trace_entries[$i]['name'] . '(' . $g_pcl_trace_entries[$i]['param'] . ')</span></td>';
            Severity: Minor
            Found in class/pcltrace.lib.php by phpcodesniffer

            Line exceeds 120 characters; contains 139 characters
            Open

                                    echo "<td width=10><div align=center><span style='font-size: x-small; font-family: $v_font; '>+</span></div></td>";
            Severity: Minor
            Found in class/pcltrace.lib.php by phpcodesniffer

            Line exceeds 120 characters; contains 185 characters
            Open

                                echo "<td><span style='font-size: x-small; font-family: $v_font; '>" . $g_pcl_trace_entries[$i]['name'] . '()=' . $g_pcl_trace_entries[$i]['param'] . '</span></td>';
            Severity: Minor
            Found in class/pcltrace.lib.php by phpcodesniffer

            Line exceeds 120 characters; contains 135 characters
            Open

                                echo "<span style='font-size: x-small; font-family: $v_font; '>" . $g_pcl_trace_entries[$i]['message'] . '</span>';
            Severity: Minor
            Found in class/pcltrace.lib.php by phpcodesniffer

            Line exceeds 120 characters; contains 184 characters
            Open

                                echo "<td><span style='font-size: x-small; font-family: $v_font; '>" . $g_pcl_trace_entries[$i]['name'] . '(' . $g_pcl_trace_entries[$i]['param'] . ')</span></td>';
            Severity: Minor
            Found in class/pcltrace.lib.php by phpcodesniffer

            Line exceeds 120 characters; contains 132 characters
            Open

                    echo "<td><div align=center><span style='font-size: small; color: #FFFFFF; font-family: $v_font; '>Trace</span></div></td>";
            Severity: Minor
            Found in class/pcltrace.lib.php by phpcodesniffer

            Line exceeds 120 characters; contains 135 characters
            Open

                                echo "<td width=10><div align=center><span style='font-size: x-small; font-family: $v_font; '>|</span></div></td>";
            Severity: Minor
            Found in class/pcltrace.lib.php by phpcodesniffer

            Line exceeds 120 characters; contains 145 characters
            Open

                        echo "<td><span style='font-size: xx-small; font-family: $v_font; '>" . \basename($g_pcl_trace_entries[$i]['file']) . '</span></td>';
            Severity: Minor
            Found in class/pcltrace.lib.php by phpcodesniffer

            Line exceeds 120 characters; contains 169 characters
            Open

                            echo '<b>' . $p_entry['name'] . '</b>(' . $p_entry['param'] . ') : ' . $p_entry['message'] . ' [' . $p_entry['file'] . ', ' . $p_entry['line'] . ']<br>';
            Severity: Minor
            Found in class/pcltrace.lib.php by phpcodesniffer

            Line exceeds 120 characters; contains 134 characters
            Open

                        echo "<td><span style='font-size: xx-small; font-family: $v_font; '>" . $g_pcl_trace_entries[$i]['line'] . '</span></td>';
            Severity: Minor
            Found in class/pcltrace.lib.php by phpcodesniffer

            Line exceeds 120 characters; contains 170 characters
            Open

                            echo '<b>' . $p_entry['name'] . '</b>()=' . $p_entry['param'] . ' : ' . $p_entry['message'] . ' [' . $p_entry['file'] . ', ' . $p_entry['line'] . ']<br>';
            Severity: Minor
            Found in class/pcltrace.lib.php by phpcodesniffer

            The variable $g_pcl_trace_filename is not named in camelCase.
            Open

                function TrOn($p_level = 1, $p_mode = 'memory', $p_filename = 'trace.txt')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_mode is not named in camelCase.
            Open

                function TrOff()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_name is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_message is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_file is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_name is not named in camelCase.
            Open

                function TrFctMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_message is not named in camelCase.
            Open

                function TrFctMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_line is not named in camelCase.
            Open

                function TrMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_name is not named in camelCase.
            Open

                function TrDisplay()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrDisplay()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_entry is not named in camelCase.
            Open

                function PclTraceAction($p_entry)
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_name is not named in camelCase.
            Open

                function TrOn($p_level = 1, $p_mode = 'memory', $p_filename = 'trace.txt')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_index is not named in camelCase.
            Open

                function TrOff()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_level is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_name is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_line is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_index is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_level is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $v_name is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_level is not named in camelCase.
            Open

                function TrFctMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_level is not named in camelCase.
            Open

                function TrMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_mode is not named in camelCase.
            Open

                function TrDisplay()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $v_again is not named in camelCase.
            Open

                function TrDisplay()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrDisplay()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrDisplay()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $v_font is not named in camelCase.
            Open

                function TrDisplay()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $v_font is not named in camelCase.
            Open

                function TrDisplay()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_mode is not named in camelCase.
            Open

                function PclTraceAction($p_entry)
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_filename is not named in camelCase.
            Open

                function TrOff()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_name is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_message is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_name is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_line is not named in camelCase.
            Open

                function TrFctMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_name is not named in camelCase.
            Open

                function TrMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_file is not named in camelCase.
            Open

                function TrMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_level is not named in camelCase.
            Open

                function TrDisplay()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $v_font is not named in camelCase.
            Open

                function TrDisplay()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $v_font is not named in camelCase.
            Open

                function TrDisplay()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrDisplay()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrOn($p_level = 1, $p_mode = 'memory', $p_filename = 'trace.txt')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_mode is not named in camelCase.
            Open

                function TrOn($p_level = 1, $p_mode = 'memory', $p_filename = 'trace.txt')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_level is not named in camelCase.
            Open

                function IsTrOn()
                {
                    global $g_pcl_trace_level;
            
                    return $g_pcl_trace_level;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_name is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_name is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_index is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $v_font is not named in camelCase.
            Open

                function TrDisplay()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_entry is not named in camelCase.
            Open

                function PclTraceAction($p_entry)
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_mode is not named in camelCase.
            Open

                function TrOn($p_level = 1, $p_mode = 'memory', $p_filename = 'trace.txt')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_mode is not named in camelCase.
            Open

                function TrOn($p_level = 1, $p_mode = 'memory', $p_filename = 'trace.txt')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_filename is not named in camelCase.
            Open

                function TrOn($p_level = 1, $p_mode = 'memory', $p_filename = 'trace.txt')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_mode is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_level is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $v_name is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_level is not named in camelCase.
            Open

                function TrFctMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_filename is not named in camelCase.
            Open

                function TrMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrDisplay()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $v_font is not named in camelCase.
            Open

                function TrDisplay()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $v_font is not named in camelCase.
            Open

                function TrDisplay()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_entry is not named in camelCase.
            Open

                function PclTraceAction($p_entry)
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_mode is not named in camelCase.
            Open

                function TrOn($p_level = 1, $p_mode = 'memory', $p_filename = 'trace.txt')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_index is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_filename is not named in camelCase.
            Open

                function TrFctMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $v_font is not named in camelCase.
            Open

                function TrDisplay()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $v_name is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_index is not named in camelCase.
            Open

                function TrFctMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_name is not named in camelCase.
            Open

                function PclTraceAction($p_entry)
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_entry is not named in camelCase.
            Open

                function PclTraceAction($p_entry)
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_entry is not named in camelCase.
            Open

                function PclTraceAction($p_entry)
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_message is not named in camelCase.
            Open

                function TrMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrDisplay()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_entry is not named in camelCase.
            Open

                function PclTraceAction($p_entry)
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrDisplay()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrDisplay()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_index is not named in camelCase.
            Open

                function PclTraceAction($p_entry)
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_entry is not named in camelCase.
            Open

                function PclTraceAction($p_entry)
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_name is not named in camelCase.
            Open

                function TrOff()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_name is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_line is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_level is not named in camelCase.
            Open

                function TrMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_level is not named in camelCase.
            Open

                function TrOn($p_level = 1, $p_mode = 'memory', $p_filename = 'trace.txt')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_filename is not named in camelCase.
            Open

                function TrOn($p_level = 1, $p_mode = 'memory', $p_filename = 'trace.txt')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_index is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_level is not named in camelCase.
            Open

                function TrMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_index is not named in camelCase.
            Open

                function TrMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_level is not named in camelCase.
            Open

                function PclTraceAction($p_entry)
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_level is not named in camelCase.
            Open

                function TrOn($p_level = 1, $p_mode = 'memory', $p_filename = 'trace.txt')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_level is not named in camelCase.
            Open

                function TrOff()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_file is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_file is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $v_name is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $v_name is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_index is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_index is not named in camelCase.
            Open

                function TrOn($p_level = 1, $p_mode = 'memory', $p_filename = 'trace.txt')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_level is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_param is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrDisplay()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrDisplay()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_filename is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_name is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_filename is not named in camelCase.
            Open

                function PclTraceAction($p_entry)
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_entry is not named in camelCase.
            Open

                function PclTraceAction($p_entry)
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_entry is not named in camelCase.
            Open

                function PclTraceAction($p_entry)
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_file is not named in camelCase.
            Open

                function TrFctMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_mode is not named in camelCase.
            Open

                function TrDisplay()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $v_font is not named in camelCase.
            Open

                function TrDisplay()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrDisplay()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_entry is not named in camelCase.
            Open

                function PclTraceAction($p_entry)
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_entry is not named in camelCase.
            Open

                function PclTraceAction($p_entry)
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_level is not named in camelCase.
            Open

                function TrOn($p_level = 1, $p_mode = 'memory', $p_filename = 'trace.txt')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_mode is not named in camelCase.
            Open

                function TrOn($p_level = 1, $p_mode = 'memory', $p_filename = 'trace.txt')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_name is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_name is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_return is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_mode is not named in camelCase.
            Open

                function TrMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_filename is not named in camelCase.
            Open

                function TrDisplay()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrDisplay()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrDisplay()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_level is not named in camelCase.
            Open

                function IsTrOn()
                {
                    global $g_pcl_trace_level;
            
                    return $g_pcl_trace_level;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $v_font is not named in camelCase.
            Open

                function TrDisplay()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrDisplay()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_entry is not named in camelCase.
            Open

                function PclTraceAction($p_entry)
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_level is not named in camelCase.
            Open

                function TrOff()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_entry is not named in camelCase.
            Open

                function PclTraceAction($p_entry)
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_name is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_message is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $v_name is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_index is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_index is not named in camelCase.
            Open

                function TrDisplay()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_level is not named in camelCase.
            Open

                function TrDisplay()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrDisplay()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function PclTraceAction($p_entry)
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_mode is not named in camelCase.
            Open

                function PclTraceAction($p_entry)
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_name is not named in camelCase.
            Open

                function TrOff()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_filename is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_line is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_mode is not named in camelCase.
            Open

                function TrFctMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_index is not named in camelCase.
            Open

                function TrOff()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_mode is not named in camelCase.
            Open

                function TrOff()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrOff()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_name is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_line is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_index is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_index is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_mode is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctStart($p_file, $p_line, $p_name, $p_param = '', $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $v_name is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_message is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_name is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_file is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctEnd($p_file, $p_line, $p_return = 1, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_index is not named in camelCase.
            Open

                function TrMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrDisplay()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_entry is not named in camelCase.
            Open

                function PclTraceAction($p_entry)
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_level is not named in camelCase.
            Open

                function TrFctMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_entry is not named in camelCase.
            Open

                function PclTraceAction($p_entry)
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_index is not named in camelCase.
            Open

                function TrFctMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrFctMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrMessage($p_file, $p_line, $p_level, $p_message = '')
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $g_pcl_trace_entries is not named in camelCase.
            Open

                function TrDisplay()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $v_font is not named in camelCase.
            Open

                function TrDisplay()
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            The variable $p_entry is not named in camelCase.
            Open

                function PclTraceAction($p_entry)
                {
                    global $g_pcl_trace_level;
                    global $g_pcl_trace_mode;
                    global $g_pcl_trace_filename;
            Severity: Minor
            Found in class/pcltrace.lib.php by phpmd

            CamelCaseVariableName

            Since: 0.2

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

            Example

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

            Source

            There are no issues that match your filters.

            Category
            Status