lib/Ajde/Shop/Transaction.php

Summary

Maintainability
A
0 mins
Test Coverage

beforeInsert accesses the super-global variable $_SERVER.
Open

    public function beforeInsert()
    {
        $this->secret = $this->generateSecret();
        $this->ip = $_SERVER['REMOTE_ADDR'];

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

Missing class import via use statement (line '181', column '25').
Open

            $item = new TransactionItemModel();
Severity: Minor
Found in lib/Ajde/Shop/Transaction.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 '170', column '23').
Open

            throw new Ajde_Exception('Can only add items to transaction if it exists');
Severity: Minor
Found in lib/Ajde/Shop/Transaction.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 '175', column '31').
Open

        $items->addFilter(new Ajde_Filter_Where('transaction', Ajde_Filter::FILTER_EQUALS, $this->getPK()));
Severity: Minor
Found in lib/Ajde/Shop/Transaction.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 '61', column '28').
Open

        $this->added = new Ajde_Db_Function('NOW()');
Severity: Minor
Found in lib/Ajde/Shop/Transaction.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 '131', column '25').
Open

            $view = new Ajde_View(MODULE_DIR.'shop/', 'transaction/view');
Severity: Minor
Found in lib/Ajde/Shop/Transaction.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 '198', column '36').
Open

        $collection->addFilter(new Ajde_Filter_Where('transaction', Ajde_Filter::FILTER_EQUALS, $this->getPK()));
Severity: Minor
Found in lib/Ajde/Shop/Transaction.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 '174', column '22').
Open

        $items = new TransactionItemCollection();
Severity: Minor
Found in lib/Ajde/Shop/Transaction.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 getOverviewHtml uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
Open

        } else {
            return 'Order not found';
        }
Severity: Minor
Found in lib/Ajde/Shop/Transaction.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_Shop_Transaction_Provider' in method 'getProvider'.
Open

        return Ajde_Shop_Transaction_Provider::getProvider($this->payment_provider, $this);
Severity: Minor
Found in lib/Ajde/Shop/Transaction.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_Event' in method 'beforeInsert'.
Open

        Ajde_Event::trigger($this, 'onCreate');
Severity: Minor
Found in lib/Ajde/Shop/Transaction.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_Event' in method 'paid'.
Open

        Ajde_Event::trigger($this, 'onPaid');
Severity: Minor
Found in lib/Ajde/Shop/Transaction.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_Shop_Transaction_Provider' in method '_getProviders'.
Open

            $return[$provider] = Ajde_Shop_Transaction_Provider::getProvider($provider);
Severity: Minor
Found in lib/Ajde/Shop/Transaction.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 local variables such as '$same'.
Open

        $same = false;
Severity: Minor
Found in lib/Ajde/Shop/Transaction.php by phpmd

UnusedLocalVariable

Since: 0.2

Detects when a local variable is declared and/or assigned, but not used.

Example

class Foo {
    public function doSomething()
    {
        $i = 5; // Unused
    }
}

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

The property $_shippingModel is not named in camelCase.
Open

abstract class Ajde_Shop_Transaction extends Ajde_Model
{
    protected $_shippingModel;
    protected $_itemModel;

Severity: Minor
Found in lib/Ajde/Shop/Transaction.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 $_itemModel is not named in camelCase.
Open

abstract class Ajde_Shop_Transaction extends Ajde_Model
{
    protected $_shippingModel;
    protected $_itemModel;

Severity: Minor
Found in lib/Ajde/Shop/Transaction.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_Shop_Transaction is not named in CamelCase.
Open

abstract class Ajde_Shop_Transaction extends Ajde_Model
{
    protected $_shippingModel;
    protected $_itemModel;

Severity: Minor
Found in lib/Ajde/Shop/Transaction.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 _format is not named in camelCase.
Open

    protected function _format($value)
    {
        return money_format('%!i', $value);
    }
Severity: Minor
Found in lib/Ajde/Shop/Transaction.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

The method _getProviders is not named in camelCase.
Open

    private static function _getProviders()
    {
        $return = [];
        $providers = config('shop.transaction.providers');
        foreach ($providers as $provider) {
Severity: Minor
Found in lib/Ajde/Shop/Transaction.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

The method _getShippingModel is not named in camelCase.
Open

    private function _getShippingModel()
    {
        $shippingModelName = $this->_shippingModel;

        return new $shippingModelName($this);
Severity: Minor
Found in lib/Ajde/Shop/Transaction.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