lib/Ajde/Shop/Shipping/Method.php

Summary

Maintainability
A
0 mins
Test Coverage

The class Ajde_Shop_Shipping_Method is not named in CamelCase.
Open

abstract class Ajde_Shop_Shipping_Method extends Ajde_Object_Standard
{
    public function setTransaction(Ajde_Shop_Transaction $transaction)
    {
        parent::setTransaction($transaction);
Severity: Minor
Found in lib/Ajde/Shop/Shipping/Method.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/Shipping/Method.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