YetiForceCompany/YetiForceCRM

View on GitHub
modules/Settings/Dependencies/views/Vulnerabilities.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%

Missing class import via use statement (line '32', column '43').
Open

        $viewer->assign('VULNERABILITIES', (new \App\Security\Dependency())->securityChecker());

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 '20', column '14').
Open

            throw new \App\Exceptions\NoPermittedForAdmin('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

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

        if(!\App\YetiForce\Register::getProduct('YetiForceVulnerabilities')){

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 method getProduct from undeclared class \App\YetiForce\Register
Open

        if(!\App\YetiForce\Register::getProduct('YetiForceVulnerabilities')){

Call to undeclared method \Vtiger_Viewer::assign
Open

        $viewer->assign('VULNERABILITIES', (new \App\Security\Dependency())->securityChecker());

Avoid excessively long class names like Settings_Dependencies_Vulnerabilities_View. Keep class name length under 40.
Open

class Settings_Dependencies_Vulnerabilities_View extends Settings_Vtiger_Index_View
{

    /** {@inheritdoc} */
    public function checkPermission(\App\Request $request)

LongClassName

Since: 2.9

Detects when classes or interfaces are declared with excessively long names.

Example

class ATooLongClassNameThatHintsAtADesignProblem {

}

interface ATooLongInterfaceNameThatHintsAtADesignProblem {

}

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

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

class Settings_Dependencies_Vulnerabilities_View extends Settings_Vtiger_Index_View

The class Settings_Dependencies_Vulnerabilities_View is not named in CamelCase.
Open

class Settings_Dependencies_Vulnerabilities_View extends Settings_Vtiger_Index_View
{

    /** {@inheritdoc} */
    public function checkPermission(\App\Request $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

        parent::checkPermission($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

        $viewer = $this->getViewer($request);

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

    public function process(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

        }

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\NoPermittedForAdmin('LBL_PERMISSION_DENIED');

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

    /** {@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

    public function checkPermission(\App\Request $request)

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

        $viewer->view('Vulnerabilities.tpl', $request->getModule(false));

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

        if(!\App\YetiForce\Register::getProduct('YetiForceVulnerabilities')){

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

     *

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

        $viewer->assign('VULNERABILITIES', (new \App\Security\Dependency())->securityChecker());

Expected 1 space after closing parenthesis; found 0
Open

        if(!\App\YetiForce\Register::getProduct('YetiForceVulnerabilities')){

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

class Settings_Dependencies_Vulnerabilities_View extends Settings_Vtiger_Index_View

Expected 1 space after IF keyword; 0 found
Open

        if(!\App\YetiForce\Register::getProduct('YetiForceVulnerabilities')){

There are no issues that match your filters.

Category
Status