lib/Ajde/Cookie.php

Summary

Maintainability
A
0 mins
Test Coverage

reader accesses the super-global variable $_COOKIE.
Open

    protected function reader()
    {
        if ($this->_secure) {
            return @unserialize(Ajde_Component_String::decrypt($_COOKIE[$this->_namespace]));
        } else {
Severity: Minor
Found in lib/Ajde/Cookie.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

reader accesses the super-global variable $_COOKIE.
Open

    protected function reader()
    {
        if ($this->_secure) {
            return @unserialize(Ajde_Component_String::decrypt($_COOKIE[$this->_namespace]));
        } else {
Severity: Minor
Found in lib/Ajde/Cookie.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

__construct accesses the super-global variable $_COOKIE.
Open

    public function __construct($namespace = 'default', $secure = false)
    {
        $this->_namespace = $namespace;
        $this->_secure = $secure;
        if (isset($_COOKIE[$this->_namespace])) {
Severity: Minor
Found in lib/Ajde/Cookie.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

Remove error control operator '@' on line 59.
Open

    protected function reader()
    {
        if ($this->_secure) {
            return @unserialize(Ajde_Component_String::decrypt($_COOKIE[$this->_namespace]));
        } else {
Severity: Minor
Found in lib/Ajde/Cookie.php by phpmd

ErrorControlOperator

Error suppression should be avoided if possible as it doesn't just suppress the error, that you are trying to stop, but will also suppress errors that you didn't predict would ever occur. Consider changing error_reporting() level and/or setting up your own error handler.

Example

function foo($filePath) {
    $file = @fopen($filPath); // hides exceptions
    $key = @$array[$notExistingKey]; // assigns null to $key
}

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

Missing class import via use statement (line '51', column '23').
Open

            throw new Ajde_Exception('It is not allowed to store a Model directly in a cookie, use Ajde_Cookie::setModel() instead.');
Severity: Minor
Found in lib/Ajde/Cookie.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

The method __construct has a boolean flag argument $secure, which is a certain sign of a Single Responsibility Principle violation.
Open

    public function __construct($namespace = 'default', $secure = false)
Severity: Minor
Found in lib/Ajde/Cookie.php by phpmd

BooleanArgumentFlag

Since: 1.4.0

A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

Example

class Foo {
    public function bar($flag = true) {
    }
}

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

Remove error control operator '@' on line 61.
Open

    protected function reader()
    {
        if ($this->_secure) {
            return @unserialize(Ajde_Component_String::decrypt($_COOKIE[$this->_namespace]));
        } else {
Severity: Minor
Found in lib/Ajde/Cookie.php by phpmd

ErrorControlOperator

Error suppression should be avoided if possible as it doesn't just suppress the error, that you are trying to stop, but will also suppress errors that you didn't predict would ever occur. Consider changing error_reporting() level and/or setting up your own error handler.

Example

function foo($filePath) {
    $file = @fopen($filPath); // hides exceptions
    $key = @$array[$notExistingKey]; // assigns null to $key
}

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

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

        } else {
            return @unserialize($_COOKIE[$this->_namespace]);
        }
Severity: Minor
Found in lib/Ajde/Cookie.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 using static access to class 'Ajde_Dump' in method 'getModel'.
Open

            Ajde_Dump::warn('Model definition changed during cookie period');
Severity: Minor
Found in lib/Ajde/Cookie.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_Component_String' in method 'reader'.
Open

            return @unserialize(Ajde_Component_String::decrypt($_COOKIE[$this->_namespace]));
Severity: Minor
Found in lib/Ajde/Cookie.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_Component_String' in method 'writer'.
Open

            return Ajde_Component_String::encrypt(serialize($this->values()));
Severity: Minor
Found in lib/Ajde/Cookie.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 method writer uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
Open

        } else {
            return serialize($this->values());
        }
Severity: Minor
Found in lib/Ajde/Cookie.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

TODO found
Open

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

The property $_secure is not named in camelCase.
Open

class Ajde_Cookie extends Ajde_Object_Standard
{
    protected $_namespace = null;
    protected $_lifetime = 90;
    protected $_secure = false;
Severity: Minor
Found in lib/Ajde/Cookie.php by phpmd

CamelCasePropertyName

Since: 0.2

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

Example

class ClassName {
    protected $property_name;
}

Source

The property $_lifetime is not named in camelCase.
Open

class Ajde_Cookie extends Ajde_Object_Standard
{
    protected $_namespace = null;
    protected $_lifetime = 90;
    protected $_secure = false;
Severity: Minor
Found in lib/Ajde/Cookie.php by phpmd

CamelCasePropertyName

Since: 0.2

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

Example

class ClassName {
    protected $property_name;
}

Source

The property $_namespace is not named in camelCase.
Open

class Ajde_Cookie extends Ajde_Object_Standard
{
    protected $_namespace = null;
    protected $_lifetime = 90;
    protected $_secure = false;
Severity: Minor
Found in lib/Ajde/Cookie.php by phpmd

CamelCasePropertyName

Since: 0.2

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

Example

class ClassName {
    protected $property_name;
}

Source

The class Ajde_Cookie is not named in CamelCase.
Open

class Ajde_Cookie extends Ajde_Object_Standard
{
    protected $_namespace = null;
    protected $_lifetime = 90;
    protected $_secure = false;
Severity: Minor
Found in lib/Ajde/Cookie.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 _setcookie is not named in camelCase.
Open

    protected function _setcookie($value, $lifetime)
    {
        $path = config('app.path');
        $domain = config('security.cookie.domain');
        $secure = config('security.cookie.secure');
Severity: Minor
Found in lib/Ajde/Cookie.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