lib/Ajde/Core/Autodebug.php

Summary

Maintainability
A
0 mins
Test Coverage

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

    public static function __bootstrap()
    {
        if (($user = Ajde_User::getLoggedIn()) && $user->getDebug()) {
            Config::set('app.debug', true);

Severity: Minor
Found in lib/Ajde/Core/Autodebug.php by phpmd

IfStatementAssignment

Since: 2.7.0

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

Example

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

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

Avoid using static access to class 'Config' in method '__bootstrap'.
Open

            Config::set('app.debug', true);
Severity: Minor
Found in lib/Ajde/Core/Autodebug.php by phpmd

StaticAccess

Since: 1.4.0

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

Example

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

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

Avoid using static access to class 'Ajde_User' in method '__bootstrap'.
Open

        if (($user = Ajde_User::getLoggedIn()) && $user->getDebug()) {
Severity: Minor
Found in lib/Ajde/Core/Autodebug.php by phpmd

StaticAccess

Since: 1.4.0

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

Example

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

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

Avoid using static access to class 'Config' in method '__bootstrap'.
Open

                Config::set('layout.filters.documentProcessors.html', $htmlProcessors);
Severity: Minor
Found in lib/Ajde/Core/Autodebug.php by phpmd

StaticAccess

Since: 1.4.0

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

Example

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

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

The class Ajde_Core_Autodebug is not named in CamelCase.
Open

class Ajde_Core_Autodebug extends Ajde_Object_Singleton
{
    public static function getInstance()
    {
        static $instance;
Severity: Minor
Found in lib/Ajde/Core/Autodebug.php by phpmd

CamelCaseClassName

Since: 0.2

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

Example

class class_name {
}

Source

The method __bootstrap is not named in camelCase.
Open

    public static function __bootstrap()
    {
        if (($user = Ajde_User::getLoggedIn()) && $user->getDebug()) {
            Config::set('app.debug', true);

Severity: Minor
Found in lib/Ajde/Core/Autodebug.php by phpmd

CamelCaseMethodName

Since: 0.2

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

Example

class ClassName {
    public function get_name() {
    }
}

Source

There are no issues that match your filters.

Category
Status