lib/Ajde/Shop/Cart/Merge.php

Summary

Maintainability
A
2 hrs
Test Coverage

mergeUserToClient accesses the super-global variable $_SERVER.
Open

    public static function mergeUserToClient()
    {
        if ($user = Ajde_User::getLoggedIn()) {

            // Do we have a saved cart for logged in user?
Severity: Minor
Found in lib/Ajde/Shop/Cart/Merge.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

mergeUserToClient accesses the super-global variable $_SERVER.
Open

    public static function mergeUserToClient()
    {
        if ($user = Ajde_User::getLoggedIn()) {

            // Do we have a saved cart for logged in user?
Severity: Minor
Found in lib/Ajde/Shop/Cart/Merge.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 mergeClientToUser has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
Open

    public static function mergeClientToUser()
    {
        if ($user = Ajde_User::getLoggedIn()) {

            // Do we have a saved client cart?
Severity: Minor
Found in lib/Ajde/Shop/Cart/Merge.php - About 1 hr 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

Function mergeUserToClient has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
Open

    public static function mergeUserToClient()
    {
        if ($user = Ajde_User::getLoggedIn()) {

            // Do we have a saved cart for logged in user?
Severity: Minor
Found in lib/Ajde/Shop/Cart/Merge.php - About 55 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

Missing class import via use statement (line '56', column '29').
Open

            $userCart = new CartModel();
Severity: Minor
Found in lib/Ajde/Shop/Cart/Merge.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

Missing class import via use statement (line '28', column '33').
Open

                $userCart = new CartModel();
Severity: Minor
Found in lib/Ajde/Shop/Cart/Merge.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

Missing class import via use statement (line '24', column '31').
Open

            $clientCart = new CartModel();
Severity: Minor
Found in lib/Ajde/Shop/Cart/Merge.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

Missing class import via use statement (line '60', column '35').
Open

                $clientCart = new CartModel();
Severity: Minor
Found in lib/Ajde/Shop/Cart/Merge.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 static access to class 'Ajde_User' in method 'mergeClientToUser'.
Open

        if ($user = Ajde_User::getLoggedIn()) {
Severity: Minor
Found in lib/Ajde/Shop/Cart/Merge.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 'mergeUserToClient'.
Open

        if ($user = Ajde_User::getLoggedIn()) {
Severity: Minor
Found in lib/Ajde/Shop/Cart/Merge.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 assigning values to variables in if clauses and the like (line '21', column '13').
Open

    public static function mergeClientToUser()
    {
        if ($user = Ajde_User::getLoggedIn()) {

            // Do we have a saved client cart?
Severity: Minor
Found in lib/Ajde/Shop/Cart/Merge.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 assigning values to variables in if clauses and the like (line '53', column '13').
Open

    public static function mergeUserToClient()
    {
        if ($user = Ajde_User::getLoggedIn()) {

            // Do we have a saved cart for logged in user?
Severity: Minor
Found in lib/Ajde/Shop/Cart/Merge.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 'Ajde_Session_Flash' in method 'mergeClientToUser'.
Open

                    Ajde_Session_Flash::alert(trans('Your items are still in the shopping cart'));
Severity: Minor
Found in lib/Ajde/Shop/Cart/Merge.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_Shop_Cart_Merge is not named in CamelCase.
Open

class Ajde_Shop_Cart_Merge extends Ajde_Object_Singleton
{
    public static function getInstance()
    {
        static $instance;
Severity: Minor
Found in lib/Ajde/Shop/Cart/Merge.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()
    {
        self::mergeClientToUser();

        return true;
Severity: Minor
Found in lib/Ajde/Shop/Cart/Merge.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