YetiForceCompany/YetiForceCRM

View on GitHub
modules/Faq/actions/KnowledgeBaseAjax.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%

Missing class import via use statement (line '41', 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 '59', 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

Avoid using static access to class 'Faq_KnowledgeBase_Model' in method 'getModel'.
Open

        return Faq_KnowledgeBase_Model::getInstance($request->getModule());

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

Define a constant instead of duplicating this literal "accountid" 3 times.
Open

        if (!$request->isEmpty('accountid')) {

Duplicated string literals make the process of refactoring error-prone, since you must be sure to update all occurrences.

On the other hand, constants can be referenced from many places, but only need to be updated in a single place.

Noncompliant Code Example

With the default threshold of 3:

function run() {
  prepare('action1');                              // Non-Compliant - 'action1' is duplicated 3 times
  execute('action1');
  release('action1');
}

Compliant Solution

ACTION_1 = 'action1';

function run() {
  prepare(ACTION_1);
  execute(ACTION_1);
  release(ACTION_1);
}

Exceptions

To prevent generating some false-positives, literals having less than 5 characters are excluded.

Define a constant instead of duplicating this literal "category" 4 times.
Open

        if (!$request->isEmpty('category')) {

Duplicated string literals make the process of refactoring error-prone, since you must be sure to update all occurrences.

On the other hand, constants can be referenced from many places, but only need to be updated in a single place.

Noncompliant Code Example

With the default threshold of 3:

function run() {
  prepare('action1');                              // Non-Compliant - 'action1' is duplicated 3 times
  execute('action1');
  release('action1');
}

Compliant Solution

ACTION_1 = 'action1';

function run() {
  prepare(ACTION_1);
  execute(ACTION_1);
  release(ACTION_1);
}

Exceptions

To prevent generating some false-positives, literals having less than 5 characters are excluded.

Call to method getData on non-class type void
Open

        $response->setResult($treeModel->getData());
Severity: Critical
Found in modules/Faq/actions/KnowledgeBaseAjax.php by phan

Cannot assign void return value
Open

        $treeModel = $this->getModel($request);

Call to method set on non-class type void
Open

            $treeModel->set('filterValue', $request->getInteger('accountid'));
Severity: Critical
Found in modules/Faq/actions/KnowledgeBaseAjax.php by phan

Cannot assign void return value
Open

        $treeModel = $this->getModel($request);

Call to method set on non-class type void
Open

            $treeModel->set('filterField', 'accountid');
Severity: Critical
Found in modules/Faq/actions/KnowledgeBaseAjax.php by phan

Returning type \KnowledgeBase_KnowledgeBase_Model|\self but getModel() is declared to return void
Open

        return Faq_KnowledgeBase_Model::getInstance($request->getModule());

Call to method set on non-class type void
Open

            $treeModel->set('parentCategory', $request->getByType('category', 'Alnum'));
Severity: Critical
Found in modules/Faq/actions/KnowledgeBaseAjax.php by phan

Call to method set on non-class type void
Open

            $treeModel->set('parentCategory', $request->getByType('category', 'Alnum'));
Severity: Critical
Found in modules/Faq/actions/KnowledgeBaseAjax.php by phan

Call to method getAccounts on non-class type void
Open

        $response->setResult($treeModel->getAccounts());
Severity: Critical
Found in modules/Faq/actions/KnowledgeBaseAjax.php by phan

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

class Faq_KnowledgeBaseAjax_Action extends KnowledgeBase_KnowledgeBaseAjax_Action

The class Faq_KnowledgeBaseAjax_Action is not named in CamelCase.
Open

class Faq_KnowledgeBaseAjax_Action extends KnowledgeBase_KnowledgeBaseAjax_Action
{
    /** {@inheritdoc} */
    public function __construct()
    {

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

    public function list(App\Request $request)

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

        if (!$request->isEmpty('category')) {

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

    public function __construct()

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

    protected $queryCondition = ['vtiger_faq.status' => 'Published'];

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

    {

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

            $treeModel->set('filterField', 'accountid');

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

        $response->setResult($treeModel->getData());

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 getAccounts(App\Request $request)

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

            $treeModel->set('parentCategory', $request->getByType('category', 'Alnum'));

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

        $response->setResult($treeModel->getAccounts());

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

        parent::__construct();

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

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

    /** {@inheritdoc} */

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

            $treeModel->set('parentCategory', $request->getByType('category', 'Alnum'));

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

    /**

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

     * Get accounts list.

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 = new Vtiger_Response();

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

    {

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

        $this->exposeMethod('getAccounts');

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

        return Faq_KnowledgeBase_Model::getInstance($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

    }

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

        }

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

            $treeModel->set('filterValue', $request->getInteger('accountid'));

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

     *

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

        $treeModel = $this->getModel($request);

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

        $treeModel = $this->getModel($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

    /** {@inheritdoc} */

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

        if (!$request->isEmpty('accountid')) {

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 void

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

        if (!$request->isEmpty('category')) {

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} */

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

class Faq_KnowledgeBaseAjax_Action extends KnowledgeBase_KnowledgeBaseAjax_Action

There are no issues that match your filters.

Category
Status