lib/Ajde/Environment.php

Summary

Maintainability
A
35 mins
Test Coverage

autoDetect accesses the super-global variable $_SERVER.
Open

    private function autoDetect()
    {
        if (file_exists(LOCAL_ROOT.'.env')) {
            return trim(file_get_contents(LOCAL_ROOT.'.env'));
        }
Severity: Minor
Found in lib/Ajde/Environment.php by phpmd

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

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

    private function autoDetect()
    {
        if (file_exists(LOCAL_ROOT.'.env')) {
            return trim(file_get_contents(LOCAL_ROOT.'.env'));
        }
Severity: Minor
Found in lib/Ajde/Environment.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

TODO found
Open

     * TODO.
Severity: Minor
Found in lib/Ajde/Environment.php by fixme

TODO found
Open

     * TODO.
Severity: Minor
Found in lib/Ajde/Environment.php by fixme

TODO found
Open

     * TODO.
Severity: Minor
Found in lib/Ajde/Environment.php by fixme

TODO found
Open

     * TODO.
Severity: Minor
Found in lib/Ajde/Environment.php by fixme

TODO found
Open

     * TODO.
Severity: Minor
Found in lib/Ajde/Environment.php by fixme

The class Ajde_Environment is not named in CamelCase.
Open

class Ajde_Environment extends Ajde_Object_Singleton
{
    const ENV_DEFAULT = 'production';

    /**
Severity: Minor
Found in lib/Ajde/Environment.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

There are no issues that match your filters.

Category
Status