YetiForceCompany/YetiForceCRM

View on GitHub
modules/Settings/Watchdog/actions/SaveAjax.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%

Avoid using undefined variables such as '$variables' which will lead to PHP notices.
Open

        if (isset(\App\YetiForce\Watchdog::$variables[$flagName])) {

UndefinedVariable

Since: 2.8.0

Detects when a variable is used that has not been defined before.

Example

class Foo
{
    private function bar()
    {
        // $message is undefined
        echo $message;
    }
}

Source https://phpmd.org/rules/cleancode.html#undefinedvariable

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

            throw new \App\Exceptions\NoPermitted('LBL_PERMISSION_DENIED');

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 '27', column '19').
Open

        $response = new Vtiger_Response();

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 '31', column '18').
Open

            $config = new \App\ConfigFile('component', 'YetiForce');

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 'App\Language' in method 'process'.
Open

        $message = App\Language::translate('LBL_SAVED', $request->getModule(false));

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\Language' in method 'process'.
Open

            $message = App\Language::translate('LBL_PARAM_NOT_ALLOWED', $request->getModule(false));

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

The method process uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
Open

        } else {
            $result = false;
            $message = App\Language::translate('LBL_PARAM_NOT_ALLOWED', $request->getModule(false));
        }

ElseExpression

Since: 1.4.0

An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

Example

class Foo
{
    public function bar($flag)
    {
        if ($flag) {
            // one branch
        } else {
            // another branch
        }
    }
}

Source https://phpmd.org/rules/cleancode.html#elseexpression

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

class Settings_Watchdog_SaveAjax_Action extends Settings_Vtiger_Save_Action

The class Settings_Watchdog_SaveAjax_Action is not named in CamelCase.
Open

class Settings_Watchdog_SaveAjax_Action extends Settings_Vtiger_Save_Action
{
    /**
     * Process user request.
     *

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

     * Process user request.

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

        if (!$request->has('flagName')) {

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

            'message' => $message,

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

        $flagName = $request->getByType('flagName', \App\Purifier::ALNUM);

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

            $config = new \App\ConfigFile('component', 'YetiForce');

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

            throw new \App\Exceptions\NoPermitted('LBL_PERMISSION_DENIED');

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

        if (isset(\App\YetiForce\Watchdog::$variables[$flagName])) {

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

        ]);

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

        $response->emit();

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

     */

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

    public function process(App\Request $request)

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

            $config->set($flagName, $request->getRaw('newParam'));

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

            $message = App\Language::translate('LBL_PARAM_NOT_ALLOWED', $request->getModule(false));

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

     * @throws \App\Exceptions\NoPermitted

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

        $result = true;

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

    }

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

        }

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

            $result = 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

        $message = App\Language::translate('LBL_SAVED', $request->getModule(false));

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

        $response = new Vtiger_Response();

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

            $config->create();

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

        } else {

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

            'success' => $result,

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

     * @param \App\Request $request

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

        $response->setResult([

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

class Settings_Watchdog_SaveAjax_Action extends Settings_Vtiger_Save_Action

There are no issues that match your filters.

Category
Status