lib/Ajde/Log/Writer/Db.php

Summary

Maintainability
A
45 mins
Test Coverage

Method _ has 6 arguments (exceeds 4 allowed). Consider refactoring.
Open

        $message,
        $channel = Ajde_Log::CHANNEL_INFO,
        $level = Ajde_Log::LEVEL_INFORMATIONAL,
        $description = '',
        $code = '',
Severity: Minor
Found in lib/Ajde/Log/Writer/Db.php - About 45 mins to fix

    Missing class import via use statement (line '18', column '20').
    Open

            $log = new LogModel();
    Severity: Minor
    Found in lib/Ajde/Log/Writer/Db.php by phpmd

    MissingImport

    Since: 2.7.0

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

    Example

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

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

    Avoid using short method names like Ajde_Log_Writer_Db::_(). The configured minimum method name length is 3.
    Open

        public static function _(
            $message,
            $channel = Ajde_Log::CHANNEL_INFO,
            $level = Ajde_Log::LEVEL_INFORMATIONAL,
            $description = '',
    Severity: Minor
    Found in lib/Ajde/Log/Writer/Db.php by phpmd

    ShortMethodName

    Since: 0.2

    Detects when very short method names are used.

    Example

    class ShortMethod {
        public function a( $index ) { // Violation
        }
    }

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

    The class Ajde_Log_Writer_Db is not named in CamelCase.
    Open

    class Ajde_Log_Writer_Db extends Ajde_Log_Writer_Abstract
    {
        public static function _(
            $message,
            $channel = Ajde_Log::CHANNEL_INFO,
    Severity: Minor
    Found in lib/Ajde/Log/Writer/Db.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 _ is not named in camelCase.
    Open

        public static function _(
            $message,
            $channel = Ajde_Log::CHANNEL_INFO,
            $level = Ajde_Log::LEVEL_INFORMATIONAL,
            $description = '',
    Severity: Minor
    Found in lib/Ajde/Log/Writer/Db.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