YetiForceCompany/YetiForceCRM

View on GitHub
modules/Reservations/models/Record.php

Summary

Maintainability
A
2 hrs
Test Coverage
F
0%

Missing class import via use statement (line '24', column '15').
Open

        $date = new DateTime();

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 using static access to class 'DateTimeField' in method 'getDuplicateRecordUrl'.
Open

        $currDate = DateTimeField::convertToUserFormat($date->format('Y-m-d'));

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

Identical blocks of code found in 2 locations. Consider refactoring.
Open

    public function getDuplicateRecordUrl()
    {
        $module = $this->getModule();
        $date = new DateTime();
        $currDate = DateTimeField::convertToUserFormat($date->format('Y-m-d'));
Severity: Major
Found in modules/Reservations/models/Record.php and 1 other location - About 2 hrs to fix
modules/OSSTimeControl/models/Record.php on lines 18..26

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 122.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Each class must be in a namespace of at least one level (a top-level vendor name)
Open

class Reservations_Record_Model extends Vtiger_Record_Model

The class Reservations_Record_Model is not named in CamelCase.
Open

class Reservations_Record_Model extends Vtiger_Record_Model
{
    const RECALCULATE_STATUS = 'Accepted';

    public function checkID($ID)

CamelCaseClassName

Since: 0.2

It is considered best practice to use the CamelCase notation to name classes.

Example

class class_name {
}

Source

Avoid variables with short names like $ID. Configured minimum length is 3.
Open

    public function checkID($ID)

ShortVariable

Since: 0.2

Detects when a field, local, or parameter has a very short name.

Example

class Something {
    private $q = 15; // VIOLATION - Field
    public static function main( array $as ) { // VIOLATION - Formal
        $r = 20 + $this->q; // VIOLATION - Local
        for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
            $r += $this->q;
        }
    }
}

Source https://phpmd.org/rules/naming.html#shortvariable

The parameter $ID is not named in camelCase.
Open

    public function checkID($ID)
    {
        if (0 == $ID || '' == $ID) {
            return false;
        }

CamelCaseParameterName

Since: 0.2

It is considered best practice to use the camelCase notation to name parameters.

Example

class ClassName {
    public function doSomething($user_name) {
    }
}

Source

Spaces must be used to indent lines; tabs are not allowed
Open

    public function checkID($ID)

Spaces must be used to indent lines; tabs are not allowed
Open

        if (0 == $ID || '' == $ID) {

Spaces must be used to indent lines; tabs are not allowed
Open

        $date = new DateTime();

Spaces must be used to indent lines; tabs are not allowed
Open

        return true;

Spaces must be used to indent lines; tabs are not allowed
Open

        $time = $date->format('H:i');

Line exceeds 120 characters; contains 163 characters
Open

        return 'index.php?module=' . $this->getModuleName() . '&view=' . $module->getEditViewName() . '&record=' . $this->getId() . '&isDuplicate=true&date_start='

Spaces must be used to indent lines; tabs are not allowed
Open

            . $currDate . '&due_date=' . $currDate . '&time_start=' . $time . '&time_end=' . $time;

Spaces must be used to indent lines; tabs are not allowed
Open

    }

Spaces must be used to indent lines; tabs are not allowed
Open

        $currDate = DateTimeField::convertToUserFormat($date->format('Y-m-d'));

Spaces must be used to indent lines; tabs are not allowed
Open

    {

Spaces must be used to indent lines; tabs are not allowed
Open

            return false;

Spaces must be used to indent lines; tabs are not allowed
Open

    }

Spaces must be used to indent lines; tabs are not allowed
Open

        }

Spaces must be used to indent lines; tabs are not allowed
Open

        $module = $this->getModule();

Spaces must be used to indent lines; tabs are not allowed
Open

    public function getDuplicateRecordUrl()

Spaces must be used to indent lines; tabs are not allowed
Open

        return 'index.php?module=' . $this->getModuleName() . '&view=' . $module->getEditViewName() . '&record=' . $this->getId() . '&isDuplicate=true&date_start='

Spaces must be used to indent lines; tabs are not allowed
Open

    const RECALCULATE_STATUS = 'Accepted';

Spaces must be used to indent lines; tabs are not allowed
Open

    {

Class name "Reservations_Record_Model" is not in camel caps format
Open

class Reservations_Record_Model extends Vtiger_Record_Model

The variable $ID is not named in camelCase.
Open

    public function checkID($ID)
    {
        if (0 == $ID || '' == $ID) {
            return false;
        }

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $ID is not named in camelCase.
Open

    public function checkID($ID)
    {
        if (0 == $ID || '' == $ID) {
            return false;
        }

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

There are no issues that match your filters.

Category
Status