YetiForceCompany/YetiForceCRM

View on GitHub
modules/Users/actions/Logout.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%

Missing class import via use statement (line '27', column '23').
Open

        $eventHandler = new App\EventHandler();
Severity: Minor
Found in modules/Users/actions/Logout.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

Avoid using static access to class 'Users_Module_Model' in method 'process'.
Open

        $moduleModel = Users_Module_Model::getInstance($moduleName);
Severity: Minor
Found in modules/Users/actions/Logout.php by phpmd

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

            App\Session::regenerateId(true); // to overcome session id reuse.
Severity: Minor
Found in modules/Users/actions/Logout.php by phpmd

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

        OSSMail_Logout_Model::logoutCurrentUser();
Severity: Minor
Found in modules/Users/actions/Logout.php by phpmd

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

        App\Session::destroy();
Severity: Minor
Found in modules/Users/actions/Logout.php by phpmd

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

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

class Users_Logout_Action extends \App\Controller\Action

The class Users_Logout_Action is not named in CamelCase.
Open

class Users_Logout_Action extends \App\Controller\Action
{
    /** {@inheritdoc} */
    public function checkPermission(App\Request $request)
    {
Severity: Minor
Found in modules/Users/actions/Logout.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

    {

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

    {

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

        $eventHandler->trigger('UserLogoutBefore');

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

        $eventHandler = new App\EventHandler();

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

        //End

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

        if (\Config\Security::$loginSessionRegenerate) {

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

        header('location: index.php');

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

        $moduleModel = Users_Module_Model::getInstance($moduleName);

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

            App\Session::regenerateId(true); // to overcome session id reuse.

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

        }

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

        $moduleName = $request->getModule();

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

    }

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

        //Track the logout History

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

        App\Session::destroy();

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

        $moduleModel->saveLogoutHistory();

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

        OSSMail_Logout_Model::logoutCurrentUser();

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

class Users_Logout_Action extends \App\Controller\Action

There are no issues that match your filters.

Category
Status