YetiForceCompany/YetiForceCRM

View on GitHub
modules/ModComments/actions/Save.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%

Missing class import via use statement (line '20', column '13').
Open

        throw new \App\Exceptions\NoPermittedToRecord('ERR_NO_PERMISSIONS_FOR_THE_RECORD', 406);
Severity: Minor
Found in modules/ModComments/actions/Save.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

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

class ModComments_Save_Action extends Vtiger_Save_Action

The class ModComments_Save_Action is not named in CamelCase.
Open

class ModComments_Save_Action extends Vtiger_Save_Action
{
    /** {@inheritdoc} */
    public function checkPermission(App\Request $request)
    {
Severity: Minor
Found in modules/ModComments/actions/Save.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

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

    public function checkPermission(App\Request $request)

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

    {

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

        throw new \App\Exceptions\NoPermittedToRecord('ERR_NO_PERMISSIONS_FOR_THE_RECORD', 406);

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

    }

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

    /** {@inheritdoc} */

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

class ModComments_Save_Action extends Vtiger_Save_Action

There are no issues that match your filters.

Category
Status