YetiForceCompany/YetiForceCRM

View on GitHub
modules/Vtiger/crons/FileUploadTemp.php

Summary

Maintainability
A
0 mins
Test Coverage
D
66%

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

        $query = (new \App\Db\Query())->select(['id', 'path', 'key'])

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

            ->limit(App\Config::performance('CRON_MAX_ATACHMENTS_DELETE'));

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 \App\Db::createCommand
Open

        $dbCommand = \App\Db::getInstance()->createCommand();
Severity: Critical
Found in modules/Vtiger/crons/FileUploadTemp.php by phan

Call to undeclared method \App\Db\Query::select
Open

        $query = (new \App\Db\Query())->select(['id', 'path', 'key'])
Severity: Critical
Found in modules/Vtiger/crons/FileUploadTemp.php by phan

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

class Vtiger_FileUploadTemp_Cron extends \App\CronHandler

The class Vtiger_FileUploadTemp_Cron is not named in CamelCase.
Open

class Vtiger_FileUploadTemp_Cron extends \App\CronHandler
{
    /** {@inheritdoc} */
    public function process()
    {

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 process()

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

            ->andWhere(['<', 'createdtime', date('Y-m-d H:i:s', strtotime('-1 day'))])

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

            $fileName = ROOT_DIRECTORY . DIRECTORY_SEPARATOR . $row['path'] . $row['key'];

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

            ->limit(App\Config::performance('CRON_MAX_ATACHMENTS_DELETE'));

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

            if (file_exists($fileName)) {

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

        }

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

        while ($row = $dataReader->read()) {

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

            $dbCommand->delete('u_#__file_upload_temp', ['id' => $row['id']])->execute();

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

                chmod($fileName, 0755);

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

        $dbCommand = \App\Db::getInstance()->createCommand();

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

                unlink($fileName);

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

            }

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

            ->from(\App\Fields\File::TABLE_NAME_TEMP)

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

        $dataReader->close();

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

        $query = (new \App\Db\Query())->select(['id', 'path', 'key'])

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

        $dataReader = $query->createCommand()->query();

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

            ->where(['status' => 0])

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

class Vtiger_FileUploadTemp_Cron extends \App\CronHandler

There are no issues that match your filters.

Category
Status