lib/Ajde/Model/ValidatorAbstract.php

Summary

Maintainability
A
0 mins
Test Coverage

The property $_value is not named in camelCase.
Open

abstract class Ajde_Model_ValidatorAbstract extends Ajde_Object_Standard
{
    protected $_value = null;
    protected $_model = null;

Severity: Minor
Found in lib/Ajde/Model/ValidatorAbstract.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 $_defaultOptions is not named in camelCase.
Open

abstract class Ajde_Model_ValidatorAbstract extends Ajde_Object_Standard
{
    protected $_value = null;
    protected $_model = null;

Severity: Minor
Found in lib/Ajde/Model/ValidatorAbstract.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_Model_ValidatorAbstract is not named in CamelCase.
Open

abstract class Ajde_Model_ValidatorAbstract extends Ajde_Object_Standard
{
    protected $_value = null;
    protected $_model = null;

Severity: Minor
Found in lib/Ajde/Model/ValidatorAbstract.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 property $_model is not named in camelCase.
Open

abstract class Ajde_Model_ValidatorAbstract extends Ajde_Object_Standard
{
    protected $_value = null;
    protected $_model = null;

Severity: Minor
Found in lib/Ajde/Model/ValidatorAbstract.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 method _validate is not named in camelCase.
Open

    abstract protected function _validate();
Severity: Minor
Found in lib/Ajde/Model/ValidatorAbstract.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