core/modules/shop/ShopController.php

Summary

Maintainability
A
1 hr
Test Coverage

Method item has 32 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function item()
    {
        // we want to display published nodes only
        if (!(UserModel::getLoggedIn() && UserModel::getLoggedIn()->isAdmin())) {
            Ajde::app()->getRequest()->set('filterPublished', true);
Severity: Minor
Found in core/modules/shop/ShopController.php - About 1 hr to fix

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

        public function item()
        {
            // we want to display published nodes only
            if (!(UserModel::getLoggedIn() && UserModel::getLoggedIn()->isAdmin())) {
                Ajde::app()->getRequest()->set('filterPublished', true);
    Severity: Minor
    Found in core/modules/shop/ShopController.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

    Missing class import via use statement (line '136', column '21').
    Open

            $cart = new CartModel();
    Severity: Minor
    Found in core/modules/shop/ShopController.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 '43', column '25').
    Open

            $products = new ProductCollection();
    Severity: Minor
    Found in core/modules/shop/ShopController.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 '133', column '24').
    Open

            $session = new Ajde_Session('AC.Shop');
    Severity: Minor
    Found in core/modules/shop/ShopController.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 '76', column '24').
    Open

            $product = new ProductModel();
    Severity: Minor
    Found in core/modules/shop/ShopController.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 '132', column '28').
    Open

            $transaction = new TransactionModel();
    Severity: Minor
    Found in core/modules/shop/ShopController.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 assigning values to variables in if clauses and the like (line '112', column '13').
    Open

        public function item()
        {
            // we want to display published nodes only
            if (!(UserModel::getLoggedIn() && UserModel::getLoggedIn()->isAdmin())) {
                Ajde::app()->getRequest()->set('filterPublished', true);
    Severity: Minor
    Found in core/modules/shop/ShopController.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_Event' in method 'item'.
    Open

            Ajde_Event::trigger($this, 'onAfterProductLoaded', [$product]);
    Severity: Minor
    Found in core/modules/shop/ShopController.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 'UserModel' in method 'item'.
    Open

            if (!(UserModel::getLoggedIn() && UserModel::getLoggedIn()->isAdmin())) {
    Severity: Minor
    Found in core/modules/shop/ShopController.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_Dump' in method 'item'.
    Open

                Ajde_Dump::warn('Previewing unpublished product');
    Severity: Minor
    Found in core/modules/shop/ShopController.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 'item'.
    Open

                Ajde::app()->getDocument()->setDescription(Ajde_Component_String::trim(strip_tags($product->content),
                    '100'));
    Severity: Minor
    Found in core/modules/shop/ShopController.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 unused parameters such as '$allowed'.
    Open

        public function beforeInvoke($allowed = [])
    Severity: Minor
    Found in core/modules/shop/ShopController.php by phpmd

    UnusedFormalParameter

    Since: 0.2

    Avoid passing parameters to methods or constructors and then not using those parameters.

    Example

    class Foo
    {
        private function bar($howdy)
        {
            // $howdy is not used
        }
    }

    Source https://phpmd.org/rules/unusedcode.html#unusedformalparameter

    Avoid excessively long variable names like $_allowGuestTransaction. Keep variable name length under 20.
    Open

        protected $_allowGuestTransaction = true;
    Severity: Minor
    Found in core/modules/shop/ShopController.php by phpmd

    LongVariable

    Since: 0.2

    Detects when a field, formal or local variable is declared with a long name.

    Example

    class Something {
        protected $reallyLongIntName = -3; // VIOLATION - Field
        public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
            $otherReallyLongName = -5; // VIOLATION - Local
            for ($interestingIntIndex = 0; // VIOLATION - For
                 $interestingIntIndex < 10;
                 $interestingIntIndex++ ) {
            }
        }
    }

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

    The property $_allowedActions is not named in camelCase.
    Open

    class ShopController extends Ajde_Acl_Controller
    {
        /**
         * @var ProductModel
         */
    Severity: Minor
    Found in core/modules/shop/ShopController.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 $_allowGuestTransaction is not named in camelCase.
    Open

    class ShopController extends Ajde_Acl_Controller
    {
        /**
         * @var ProductModel
         */
    Severity: Minor
    Found in core/modules/shop/ShopController.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

    There are no issues that match your filters.

    Category
    Status