YetiForceCompany/YetiForceCRM

View on GitHub
modules/Settings/WebserviceUsers/actions/Password.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%

Missing class import via use statement (line '28', column '14').
Open

            throw new \App\Exceptions\NoPermitted('ERR_NO_PERMISSIONS_TO_FIELD', 406);

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 'Settings_WebserviceUsers_Record_Model' in method 'checkPermission'.
Open

        $recordModel = Settings_WebserviceUsers_Record_Model::getCleanInstance($request->getByType('typeApi', 'Alnum'));

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

Avoid using static access to class '\App\Module' in method 'checkPermission'.
Open

        if (!$this->fieldModel || \App\Encryption::getInstance(\App\Module::getModuleId($request->getModule()))->isRunning()) {

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

Call to undeclared method \Settings_WebserviceUsers_Record_Model::getFieldInstanceByName
Open

        $this->fieldModel = $recordModel->getFieldInstanceByName($request->getByType('field', 2));

Call to method getInstance from undeclared class \App\Encryption (Did you mean class \Tests\App\Encryption)
Open

        if (!$this->fieldModel || \App\Encryption::getInstance(\App\Module::getModuleId($request->getModule()))->isRunning()) {

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

class Settings_WebserviceUsers_Password_Action extends \Vtiger_Password_Action

The class Settings_WebserviceUsers_Password_Action is not named in CamelCase.
Open

class Settings_WebserviceUsers_Password_Action extends \Vtiger_Password_Action
{
    /** {@inheritdoc} */
    protected $fieldModel;

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

    protected $fieldModel;

Line exceeds 120 characters; contains 127 characters
Open

        if (!$this->fieldModel || \App\Encryption::getInstance(\App\Module::getModuleId($request->getModule()))->isRunning()) {

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

    /** {@inheritdoc} */

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

        $recordModel = Settings_WebserviceUsers_Record_Model::getCleanInstance($request->getByType('typeApi', 'Alnum'));

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

    /** {@inheritdoc} */

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

            throw new \App\Exceptions\NoPermitted('ERR_NO_PERMISSIONS_TO_FIELD', 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

    public function checkPermission(App\Request $request)

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

        $this->fieldModel = $recordModel->getFieldInstanceByName($request->getByType('field', 2));

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

        if (!$this->fieldModel || \App\Encryption::getInstance(\App\Module::getModuleId($request->getModule()))->isRunning()) {

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

class Settings_WebserviceUsers_Password_Action extends \Vtiger_Password_Action

There are no issues that match your filters.

Category
Status