jidaikobo-shibata/a11yc

View on GitHub

Showing 426 of 426 total issues

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

        static::addErrorToHtml($url, 'suspicious_ends', static::$error_ids[$url], 'ignores');

UndefinedVariable

Since: 2.8.0

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

Example

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

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

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

        static::addErrorToHtml($url, 'titleless', static::$error_ids[$url], 'ignores');
Severity: Minor
Found in classes/Validate/Check/Titleless.php by phpmd

UndefinedVariable

Since: 2.8.0

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

Example

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

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

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

        static::addErrorToHtml($url, 'unclosed_elements', static::$error_ids[$url], 'ignores');

UndefinedVariable

Since: 2.8.0

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

Example

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

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

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

        static::addErrorToHtml($url, 'user_scalable_no', static::$error_ids[$url]);
Severity: Minor
Found in classes/Validate/Check/Viewport.php by phpmd

UndefinedVariable

Since: 2.8.0

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

Example

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

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

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

            static::addErrorToHtml($url, 'link_check', static::$error_ids[$url], 'ignores_comment_out');
Severity: Minor
Found in classes/Validate/Check/LinkCheck.php by phpmd

UndefinedVariable

Since: 2.8.0

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

Example

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

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

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

        static::addErrorToHtml($url, 'too_much_ends', static::$error_ids[$url], 'ignores');

UndefinedVariable

Since: 2.8.0

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

Example

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

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

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

        return isset(static::$error_ids[$url]) ? static::$error_ids[$url] : array();
Severity: Minor
Found in classes/Validate/Get.php by phpmd

UndefinedVariable

Since: 2.8.0

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

Example

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

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

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

        static::addErrorToHtml($url, 'appropriate_heading_descending', static::$error_ids[$url], 'ignores');

UndefinedVariable

Since: 2.8.0

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

Example

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

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

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

        static::addErrorToHtml($url, 'empty_link_element', static::$error_ids[$url], 'ignores');

UndefinedVariable

Since: 2.8.0

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

Example

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

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

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

        static::addErrorToHtml($url, 'fieldsetless', static::$error_ids[$url], 'ignores');

UndefinedVariable

Since: 2.8.0

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

Example

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

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

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

        static::addErrorToHtml($url, 'notice_img_exists', static::$error_ids[$url], 'ignores');

UndefinedVariable

Since: 2.8.0

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

Example

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

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

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

        static::addErrorToHtml($url, 'table_use_scope', static::$error_ids[$url], 'ignores');
Severity: Minor
Found in classes/Validate/Check/Table.php by phpmd

UndefinedVariable

Since: 2.8.0

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

Example

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

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

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

        static::addErrorToHtml($url, 'check_doctype', static::$error_ids[$url]);

UndefinedVariable

Since: 2.8.0

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

Example

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

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

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

        if (static::$logs[$url]['css_suspicious_prop_and_vals'][self::$unspec] != -1)
Severity: Minor
Found in classes/Validate/Check/CssTotal.php by phpmd

UndefinedVariable

Since: 2.8.0

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

Example

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

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

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

        static::addErrorToHtml($url, 'not_label_but_title', static::$error_ids[$url], 'ignores');

UndefinedVariable

Since: 2.8.0

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

Example

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

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

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

        static::addErrorToHtml($url, 'table_use_th', static::$error_ids[$url], 'ignores');
Severity: Minor
Found in classes/Validate/Check/Table.php by phpmd

UndefinedVariable

Since: 2.8.0

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

Example

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

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

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

        static::addErrorToHtml($url, 'titleless_frame', static::$error_ids[$url], 'ignores');

UndefinedVariable

Since: 2.8.0

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

Example

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

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

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

        if (isset(static::$results[$url][$name][$ua][$value]) && ! $force)
Severity: Minor
Found in classes/Validate/Get.php by phpmd

UndefinedVariable

Since: 2.8.0

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

Example

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

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

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

        $html = Validate::$hl_htmls[$url];
Severity: Minor
Found in classes/Element/Get/Each.php by phpmd

UndefinedVariable

Since: 2.8.0

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

Example

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

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

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

        preg_match("/\<html ([^\>]+?)\>/is", Validate::$hl_htmls[$url], $ms);
Severity: Minor
Found in classes/Element/Get/Each.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

Severity
Category
Status
Source
Language