YetiForceCompany/YetiForceCRM

View on GitHub
modules/Users/views/VisitPurpose.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%

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

            throw new \App\Exceptions\NoPermitted('ERR_PERMISSION_DENIED', 406);
Severity: Minor
Found in modules/Users/views/VisitPurpose.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 '\App\Process' in method 'checkPermission'.
Open

        if (!(\App\Process::hasEvent('showVisitPurpose')) && !(\App\Process::hasEvent('showSuperUserVisitPurpose'))) {
Severity: Minor
Found in modules/Users/views/VisitPurpose.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\Process' in method 'checkPermission'.
Open

        if (!(\App\Process::hasEvent('showVisitPurpose')) && !(\App\Process::hasEvent('showSuperUserVisitPurpose'))) {
Severity: Minor
Found in modules/Users/views/VisitPurpose.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

Call to undeclared method \Users_VisitPurpose_View::getViewer
Open

        $viewer = $this->getViewer($request);
Severity: Critical
Found in modules/Users/views/VisitPurpose.php by phan

Class extends undeclared class \App\Controller\Modal
Open

class Users_VisitPurpose_View extends \App\Controller\Modal
Severity: Critical
Found in modules/Users/views/VisitPurpose.php by phan

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

class Users_VisitPurpose_View extends \App\Controller\Modal

The class Users_VisitPurpose_View is not named in CamelCase.
Open

class Users_VisitPurpose_View extends \App\Controller\Modal
{
    /** {@inheritdoc} */
    public $successBtnIcon = 'far fa-save';

Severity: Minor
Found in modules/Users/views/VisitPurpose.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

    protected $pageTitle = 'LBL_VISIT_PURPOSE_INFO';

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

    /** {@inheritdoc} */

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

    /** {@inheritdoc} */

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

        if (!(\App\Process::hasEvent('showVisitPurpose')) && !(\App\Process::hasEvent('showSuperUserVisitPurpose'))) {

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

    public function process(App\Request $request)

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

        $viewer->view('VisitPurpose.tpl', $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

    /** {@inheritdoc} */

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

            throw new \App\Exceptions\NoPermitted('ERR_PERMISSION_DENIED', 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 $lockExit = 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

    public function checkPermission(App\Request $request)

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

    public $modalIcon = 'mdi mdi-eye-settings';

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 $successBtnIcon = 'far fa-save';

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

class Users_VisitPurpose_View extends \App\Controller\Modal

There are no issues that match your filters.

Category
Status