core/modules/form/model/FormModel.php

Summary

Maintainability
A
0 mins
Test Coverage

The property $_autoloadParents is not named in camelCase.
Open

class FormModel extends Ajde_Model
{
    protected $_autoloadParents = true;
    protected $_displayField = 'name';

Severity: Minor
Found in core/modules/form/model/FormModel.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 $_displayField is not named in camelCase.
Open

class FormModel extends Ajde_Model
{
    protected $_autoloadParents = true;
    protected $_displayField = 'name';

Severity: Minor
Found in core/modules/form/model/FormModel.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