src/lib360/db/data/Record.php

Summary

Maintainability
A
0 mins
Test Coverage

Missing class import via use statement (line '149', column '23').
Open

            throw new \OutOfBoundsException("Offset $key does not exist.");
Severity: Minor
Found in src/lib360/db/data/Record.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 '205', column '20').
Open

        $xml = new \DOMDocument('1.0', 'utf-8');
Severity: Minor
Found in src/lib360/db/data/Record.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 '69', column '23').
Open

            throw new \OutOfBoundsException("Offset $key does not exist.");
Severity: Minor
Found in src/lib360/db/data/Record.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 unused local variables such as '$unused'.
Open

        foreach ($this->__modified as $key => $unused) {
Severity: Minor
Found in src/lib360/db/data/Record.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

Avoid unused local variables such as '$value'.
Open

        foreach ($this as $key => $value) {
Severity: Minor
Found in src/lib360/db/data/Record.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 $__type is not named in camelCase.
Open

class Record extends \ArrayObject implements IRecord
{
    /**
     * Record type
     *
Severity: Minor
Found in src/lib360/db/data/Record.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 $__modified is not named in camelCase.
Open

class Record extends \ArrayObject implements IRecord
{
    /**
     * Record type
     *
Severity: Minor
Found in src/lib360/db/data/Record.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