YetiForceCompany/YetiForceCRM

View on GitHub
config/Performance.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%

The class Performance has 46 fields. Consider redesigning Performance to keep the number of fields under 15.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

TooManyFields

Since: 0.1

Classes that have too many fields could be redesigned to have fewer fields, possibly through some nested object grouping of some of the information. For example, a class with city/state/zip fields could instead have one Address field.

Example

class Person {
   protected $one;
   private $two;
   private $three;
   [... many more fields ...]
}

Source https://phpmd.org/rules/codesize.html#toomanyfields

The class Performance has 46 public methods and attributes. Consider reducing the number of public items to less than 45.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

ExcessivePublicCount

Since: 0.1

A large number of public methods and attributes declared in a class can indicate the class may need to be broken up as increased effort will be required to thoroughly test it.

Example

public class Foo {
    public $value;
    public $something;
    public $var;
    // [... more more public attributes ...]

    public function doWork() {}
    public function doMoreWork() {}
    public function doWorkAgain() {}
    // [... more more public methods ...]
}

Source https://phpmd.org/rules/codesize.html#excessivepubliccount

Avoid excessively long variable names like $CRON_MAX_NUMBERS_SENDING_MAILS. Keep variable name length under 20.
Open

    public static $CRON_MAX_NUMBERS_SENDING_MAILS = 1000;
Severity: Minor
Found in config/Performance.php by phpmd

LongVariable

Since: 0.2

Detects when a field, formal or local variable is declared with a long name.

Example

class Something {
    protected $reallyLongIntName = -3; // VIOLATION - Field
    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
        $otherReallyLongName = -5; // VIOLATION - Local
        for ($interestingIntIndex = 0; // VIOLATION - For
             $interestingIntIndex < 10;
             $interestingIntIndex++ ) {
        }
    }
}

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

Avoid excessively long variable names like $OWNER_MINIMUM_INPUT_LENGTH. Keep variable name length under 20.
Open

    public static $OWNER_MINIMUM_INPUT_LENGTH = 2;
Severity: Minor
Found in config/Performance.php by phpmd

LongVariable

Since: 0.2

Detects when a field, formal or local variable is declared with a long name.

Example

class Something {
    protected $reallyLongIntName = -3; // VIOLATION - Field
    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
        $otherReallyLongName = -5; // VIOLATION - Local
        for ($interestingIntIndex = 0; // VIOLATION - For
             $interestingIntIndex < 10;
             $interestingIntIndex++ ) {
        }
    }
}

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

Avoid excessively long variable names like $ROLE_MINIMUM_INPUT_LENGTH. Keep variable name length under 20.
Open

    public static $ROLE_MINIMUM_INPUT_LENGTH = 2;
Severity: Minor
Found in config/Performance.php by phpmd

LongVariable

Since: 0.2

Detects when a field, formal or local variable is declared with a long name.

Example

class Something {
    protected $reallyLongIntName = -3; // VIOLATION - Field
    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
        $otherReallyLongName = -5; // VIOLATION - Local
        for ($interestingIntIndex = 0; // VIOLATION - For
             $interestingIntIndex < 10;
             $interestingIntIndex++ ) {
        }
    }
}

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

Avoid excessively long variable names like $maxMassTransferOwnershipRecords. Keep variable name length under 20.
Open

    public static $maxMassTransferOwnershipRecords = 1000;
Severity: Minor
Found in config/Performance.php by phpmd

LongVariable

Since: 0.2

Detects when a field, formal or local variable is declared with a long name.

Example

class Something {
    protected $reallyLongIntName = -3; // VIOLATION - Field
    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
        $otherReallyLongName = -5; // VIOLATION - Local
        for ($interestingIntIndex = 0; // VIOLATION - For
             $interestingIntIndex < 10;
             $interestingIntIndex++ ) {
        }
    }
}

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

Avoid excessively long variable names like $SHOW_ADMINISTRATORS_IN_USERS_LIST. Keep variable name length under 20.
Open

    public static $SHOW_ADMINISTRATORS_IN_USERS_LIST = true;
Severity: Minor
Found in config/Performance.php by phpmd

LongVariable

Since: 0.2

Detects when a field, formal or local variable is declared with a long name.

Example

class Something {
    protected $reallyLongIntName = -3; // VIOLATION - Field
    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
        $otherReallyLongName = -5; // VIOLATION - Local
        for ($interestingIntIndex = 0; // VIOLATION - For
             $interestingIntIndex < 10;
             $interestingIntIndex++ ) {
        }
    }
}

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

Avoid excessively long variable names like $BROWSING_HISTORY_DELETE_AFTER. Keep variable name length under 20.
Open

    public static $BROWSING_HISTORY_DELETE_AFTER = 7;
Severity: Minor
Found in config/Performance.php by phpmd

LongVariable

Since: 0.2

Detects when a field, formal or local variable is declared with a long name.

Example

class Something {
    protected $reallyLongIntName = -3; // VIOLATION - Field
    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
        $otherReallyLongName = -5; // VIOLATION - Local
        for ($interestingIntIndex = 0; // VIOLATION - For
             $interestingIntIndex < 10;
             $interestingIntIndex++ ) {
        }
    }
}

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

Avoid excessively long variable names like $MODULES_SPLITTED_EDIT_VIEW_LAYOUT. Keep variable name length under 20.
Open

    public static $MODULES_SPLITTED_EDIT_VIEW_LAYOUT = [];
Severity: Minor
Found in config/Performance.php by phpmd

LongVariable

Since: 0.2

Detects when a field, formal or local variable is declared with a long name.

Example

class Something {
    protected $reallyLongIntName = -3; // VIOLATION - Field
    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
        $otherReallyLongName = -5; // VIOLATION - Local
        for ($interestingIntIndex = 0; // VIOLATION - For
             $interestingIntIndex < 10;
             $interestingIntIndex++ ) {
        }
    }
}

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

Avoid excessively long variable names like $CRON_MAX_NUMBERS_RECORD_PRIVILEGES_UPDATER. Keep variable name length under 20.
Open

    public static $CRON_MAX_NUMBERS_RECORD_PRIVILEGES_UPDATER = 1000000;
Severity: Minor
Found in config/Performance.php by phpmd

LongVariable

Since: 0.2

Detects when a field, formal or local variable is declared with a long name.

Example

class Something {
    protected $reallyLongIntName = -3; // VIOLATION - Field
    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
        $otherReallyLongName = -5; // VIOLATION - Local
        for ($interestingIntIndex = 0; // VIOLATION - For
             $interestingIntIndex < 10;
             $interestingIntIndex++ ) {
        }
    }
}

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

Avoid excessively long variable names like $CRON_MAX_NUMBERS_RECORD_LABELS_UPDATER. Keep variable name length under 20.
Open

    public static $CRON_MAX_NUMBERS_RECORD_LABELS_UPDATER = 10000;
Severity: Minor
Found in config/Performance.php by phpmd

LongVariable

Since: 0.2

Detects when a field, formal or local variable is declared with a long name.

Example

class Something {
    protected $reallyLongIntName = -3; // VIOLATION - Field
    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
        $otherReallyLongName = -5; // VIOLATION - Local
        for ($interestingIntIndex = 0; // VIOLATION - For
             $interestingIntIndex < 10;
             $interestingIntIndex++ ) {
        }
    }
}

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

Avoid excessively long variable names like $DB_DEFAULT_CHARSET_UTF8. Keep variable name length under 20.
Open

    public static $DB_DEFAULT_CHARSET_UTF8 = true;
Severity: Minor
Found in config/Performance.php by phpmd

LongVariable

Since: 0.2

Detects when a field, formal or local variable is declared with a long name.

Example

class Something {
    protected $reallyLongIntName = -3; // VIOLATION - Field
    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
        $otherReallyLongName = -5; // VIOLATION - Local
        for ($interestingIntIndex = 0; // VIOLATION - For
             $interestingIntIndex < 10;
             $interestingIntIndex++ ) {
        }
    }
}

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

Avoid excessively long variable names like $INVENTORY_EDIT_VIEW_LAYOUT. Keep variable name length under 20.
Open

    public static $INVENTORY_EDIT_VIEW_LAYOUT = true;
Severity: Minor
Found in config/Performance.php by phpmd

LongVariable

Since: 0.2

Detects when a field, formal or local variable is declared with a long name.

Example

class Something {
    protected $reallyLongIntName = -3; // VIOLATION - Field
    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
        $otherReallyLongName = -5; // VIOLATION - Local
        for ($interestingIntIndex = 0; // VIOLATION - For
             $interestingIntIndex < 10;
             $interestingIntIndex++ ) {
        }
    }
}

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

Avoid excessively long variable names like $recordActivityNotifierInterval. Keep variable name length under 20.
Open

    public static $recordActivityNotifierInterval = 5;
Severity: Minor
Found in config/Performance.php by phpmd

LongVariable

Since: 0.2

Detects when a field, formal or local variable is declared with a long name.

Example

class Something {
    protected $reallyLongIntName = -3; // VIOLATION - Field
    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
        $otherReallyLongName = -5; // VIOLATION - Local
        for ($interestingIntIndex = 0; // VIOLATION - For
             $interestingIntIndex < 10;
             $interestingIntIndex++ ) {
        }
    }
}

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

Avoid excessively long variable names like $AUTO_REFRESH_RECORD_LIST_ON_SELECT_CHANGE. Keep variable name length under 20.
Open

    public static $AUTO_REFRESH_RECORD_LIST_ON_SELECT_CHANGE = true;
Severity: Minor
Found in config/Performance.php by phpmd

LongVariable

Since: 0.2

Detects when a field, formal or local variable is declared with a long name.

Example

class Something {
    protected $reallyLongIntName = -3; // VIOLATION - Field
    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
        $otherReallyLongName = -5; // VIOLATION - Local
        for ($interestingIntIndex = 0; // VIOLATION - For
             $interestingIntIndex < 10;
             $interestingIntIndex++ ) {
        }
    }
}

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

Avoid excessively long variable names like $SEARCH_SHOW_OWNER_ONLY_IN_LIST. Keep variable name length under 20.
Open

    public static $SEARCH_SHOW_OWNER_ONLY_IN_LIST = false;
Severity: Minor
Found in config/Performance.php by phpmd

LongVariable

Since: 0.2

Detects when a field, formal or local variable is declared with a long name.

Example

class Something {
    protected $reallyLongIntName = -3; // VIOLATION - Field
    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
        $otherReallyLongName = -5; // VIOLATION - Local
        for ($interestingIntIndex = 0; // VIOLATION - For
             $interestingIntIndex < 10;
             $interestingIntIndex++ ) {
        }
    }
}

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

Avoid excessively long variable names like $REPORT_RECORD_NUMBERS. Keep variable name length under 20.
Open

    public static $REPORT_RECORD_NUMBERS = 10;
Severity: Minor
Found in config/Performance.php by phpmd

LongVariable

Since: 0.2

Detects when a field, formal or local variable is declared with a long name.

Example

class Something {
    protected $reallyLongIntName = -3; // VIOLATION - Field
    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
        $otherReallyLongName = -5; // VIOLATION - Local
        for ($interestingIntIndex = 0; // VIOLATION - For
             $interestingIntIndex < 10;
             $interestingIntIndex++ ) {
        }
    }
}

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

Avoid excessively long variable names like $SEARCH_REFERENCE_BY_AJAX. Keep variable name length under 20.
Open

    public static $SEARCH_REFERENCE_BY_AJAX = false;
Severity: Minor
Found in config/Performance.php by phpmd

LongVariable

Since: 0.2

Detects when a field, formal or local variable is declared with a long name.

Example

class Something {
    protected $reallyLongIntName = -3; // VIOLATION - Field
    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
        $otherReallyLongName = -5; // VIOLATION - Local
        for ($interestingIntIndex = 0; // VIOLATION - For
             $interestingIntIndex < 10;
             $interestingIntIndex++ ) {
        }
    }
}

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

Avoid excessively long variable names like $NUMBERS_EMAILS_DOWNLOADED_DURING_ONE_SCANNING. Keep variable name length under 20.
Open

    public static $NUMBERS_EMAILS_DOWNLOADED_DURING_ONE_SCANNING = 100;
Severity: Minor
Found in config/Performance.php by phpmd

LongVariable

Since: 0.2

Detects when a field, formal or local variable is declared with a long name.

Example

class Something {
    protected $reallyLongIntName = -3; // VIOLATION - Field
    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
        $otherReallyLongName = -5; // VIOLATION - Local
        for ($interestingIntIndex = 0; // VIOLATION - For
             $interestingIntIndex < 10;
             $interestingIntIndex++ ) {
        }
    }
}

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

Avoid excessively long variable names like $BROWSING_HISTORY_WORKING. Keep variable name length under 20.
Open

    public static $BROWSING_HISTORY_WORKING = true;
Severity: Minor
Found in config/Performance.php by phpmd

LongVariable

Since: 0.2

Detects when a field, formal or local variable is declared with a long name.

Example

class Something {
    protected $reallyLongIntName = -3; // VIOLATION - Field
    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
        $otherReallyLongName = -5; // VIOLATION - Local
        for ($interestingIntIndex = 0; // VIOLATION - For
             $interestingIntIndex < 10;
             $interestingIntIndex++ ) {
        }
    }
}

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

Avoid excessively long variable names like $LISTVIEW_COMPUTE_PAGE_COUNT. Keep variable name length under 20.
Open

    public static $LISTVIEW_COMPUTE_PAGE_COUNT = false;
Severity: Minor
Found in config/Performance.php by phpmd

LongVariable

Since: 0.2

Detects when a field, formal or local variable is declared with a long name.

Example

class Something {
    protected $reallyLongIntName = -3; // VIOLATION - Field
    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
        $otherReallyLongName = -5; // VIOLATION - Local
        for ($interestingIntIndex = 0; // VIOLATION - For
             $interestingIntIndex < 10;
             $interestingIntIndex++ ) {
        }
    }
}

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

Avoid excessively long variable names like $MAX_NUMBER_EXPORT_RECORDS. Keep variable name length under 20.
Open

    public static $MAX_NUMBER_EXPORT_RECORDS = 500;
Severity: Minor
Found in config/Performance.php by phpmd

LongVariable

Since: 0.2

Detects when a field, formal or local variable is declared with a long name.

Example

class Something {
    protected $reallyLongIntName = -3; // VIOLATION - Field
    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
        $otherReallyLongName = -5; // VIOLATION - Local
        for ($interestingIntIndex = 0; // VIOLATION - For
             $interestingIntIndex < 10;
             $interestingIntIndex++ ) {
        }
    }
}

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

Avoid excessively long variable names like $CRON_MAX_NUMBERS_RECORD_ADDRESS_BOOK_UPDATER. Keep variable name length under 20.
Open

    public static $CRON_MAX_NUMBERS_RECORD_ADDRESS_BOOK_UPDATER = 10000;
Severity: Minor
Found in config/Performance.php by phpmd

LongVariable

Since: 0.2

Detects when a field, formal or local variable is declared with a long name.

Example

class Something {
    protected $reallyLongIntName = -3; // VIOLATION - Field
    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
        $otherReallyLongName = -5; // VIOLATION - Local
        for ($interestingIntIndex = 0; // VIOLATION - For
             $interestingIntIndex < 10;
             $interestingIntIndex++ ) {
        }
    }
}

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

Avoid excessively long variable names like $BROWSING_HISTORY_VIEW_LIMIT. Keep variable name length under 20.
Open

    public static $BROWSING_HISTORY_VIEW_LIMIT = 20;
Severity: Minor
Found in config/Performance.php by phpmd

LongVariable

Since: 0.2

Detects when a field, formal or local variable is declared with a long name.

Example

class Something {
    protected $reallyLongIntName = -3; // VIOLATION - Field
    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
        $otherReallyLongName = -5; // VIOLATION - Local
        for ($interestingIntIndex = 0; // VIOLATION - For
             $interestingIntIndex < 10;
             $interestingIntIndex++ ) {
        }
    }
}

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

Avoid excessively long variable names like $CHART_MULTI_FILTER_LIMIT. Keep variable name length under 20.
Open

    public static $CHART_MULTI_FILTER_LIMIT = 5;
Severity: Minor
Found in config/Performance.php by phpmd

LongVariable

Since: 0.2

Detects when a field, formal or local variable is declared with a long name.

Example

class Something {
    protected $reallyLongIntName = -3; // VIOLATION - Field
    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
        $otherReallyLongName = -5; // VIOLATION - Local
        for ($interestingIntIndex = 0; // VIOLATION - For
             $interestingIntIndex < 10;
             $interestingIntIndex++ ) {
        }
    }
}

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

Avoid excessively long variable names like $ENABLE_CACHING_DB_CONNECTION. Keep variable name length under 20.
Open

    public static $ENABLE_CACHING_DB_CONNECTION = false;
Severity: Minor
Found in config/Performance.php by phpmd

LongVariable

Since: 0.2

Detects when a field, formal or local variable is declared with a long name.

Example

class Something {
    protected $reallyLongIntName = -3; // VIOLATION - Field
    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
        $otherReallyLongName = -5; // VIOLATION - Local
        for ($interestingIntIndex = 0; // VIOLATION - For
             $interestingIntIndex < 10;
             $interestingIntIndex++ ) {
        }
    }
}

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

Avoid excessively long variable names like $CRON_MAX_ATACHMENTS_DELETE. Keep variable name length under 20.
Open

    public static $CRON_MAX_ATACHMENTS_DELETE = 1000;
Severity: Minor
Found in config/Performance.php by phpmd

LongVariable

Since: 0.2

Detects when a field, formal or local variable is declared with a long name.

Example

class Something {
    protected $reallyLongIntName = -3; // VIOLATION - Field
    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
        $otherReallyLongName = -5; // VIOLATION - Local
        for ($interestingIntIndex = 0; // VIOLATION - For
             $interestingIntIndex < 10;
             $interestingIntIndex++ ) {
        }
    }
}

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

Avoid excessively long variable names like $LOGIN_HISTORY_VIEW_LIMIT. Keep variable name length under 20.
Open

    public static $LOGIN_HISTORY_VIEW_LIMIT = 10;
Severity: Minor
Found in config/Performance.php by phpmd

LongVariable

Since: 0.2

Detects when a field, formal or local variable is declared with a long name.

Example

class Something {
    protected $reallyLongIntName = -3; // VIOLATION - Field
    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
        $otherReallyLongName = -5; // VIOLATION - Local
        for ($interestingIntIndex = 0; // VIOLATION - For
             $interestingIntIndex < 10;
             $interestingIntIndex++ ) {
        }
    }
}

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

Avoid excessively long variable names like $INTERVAL_FOR_NOTIFICATION_NUMBER_CHECK. Keep variable name length under 20.
Open

    public static $INTERVAL_FOR_NOTIFICATION_NUMBER_CHECK = 100;
Severity: Minor
Found in config/Performance.php by phpmd

LongVariable

Since: 0.2

Detects when a field, formal or local variable is declared with a long name.

Example

class Something {
    protected $reallyLongIntName = -3; // VIOLATION - Field
    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
        $otherReallyLongName = -5; // VIOLATION - Local
        for ($interestingIntIndex = 0; // VIOLATION - For
             $interestingIntIndex < 10;
             $interestingIntIndex++ ) {
        }
    }
}

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

Avoid excessively long variable names like $CHART_ADDITIONAL_FILTERS_LIMIT. Keep variable name length under 20.
Open

    public static $CHART_ADDITIONAL_FILTERS_LIMIT = 6;
Severity: Minor
Found in config/Performance.php by phpmd

LongVariable

Since: 0.2

Detects when a field, formal or local variable is declared with a long name.

Example

class Something {
    protected $reallyLongIntName = -3; // VIOLATION - Field
    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
        $otherReallyLongName = -5; // VIOLATION - Local
        for ($interestingIntIndex = 0; // VIOLATION - For
             $interestingIntIndex < 10;
             $interestingIntIndex++ ) {
        }
    }
}

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

Avoid excessively long variable names like $recordActivityNotifier. Keep variable name length under 20.
Open

    public static $recordActivityNotifier = false;
Severity: Minor
Found in config/Performance.php by phpmd

LongVariable

Since: 0.2

Detects when a field, formal or local variable is declared with a long name.

Example

class Something {
    protected $reallyLongIntName = -3; // VIOLATION - Field
    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
        $otherReallyLongName = -5; // VIOLATION - Local
        for ($interestingIntIndex = 0; // VIOLATION - For
             $interestingIntIndex < 10;
             $interestingIntIndex++ ) {
        }
    }
}

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

Avoid excessively long variable names like $SEARCH_OWNERS_BY_AJAX. Keep variable name length under 20.
Open

    public static $SEARCH_OWNERS_BY_AJAX = false;
Severity: Minor
Found in config/Performance.php by phpmd

LongVariable

Since: 0.2

Detects when a field, formal or local variable is declared with a long name.

Example

class Something {
    protected $reallyLongIntName = -3; // VIOLATION - Field
    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
        $otherReallyLongName = -5; // VIOLATION - Local
        for ($interestingIntIndex = 0; // VIOLATION - For
             $interestingIntIndex < 10;
             $interestingIntIndex++ ) {
        }
    }
}

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

The property $SESSION_DRIVER is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $ACCESS_TO_INTERNET is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $CHANGE_LOCALE is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $CRON_MAX_ATACHMENTS_DELETE is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $LOAD_CUSTOM_FILES is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $AUTO_REFRESH_RECORD_LIST_ON_SELECT_CHANGE is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $CRON_MAX_NUMBERS_SENDING_MAILS is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $SEARCH_ROLES_BY_AJAX is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $ROLE_MINIMUM_INPUT_LENGTH is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $BROWSING_HISTORY_DELETE_AFTER is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $NUMBERS_EMAILS_DOWNLOADED_DURING_ONE_SCANNING is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $LISTVIEW_COMPUTE_PAGE_COUNT is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $CRON_MAX_NUMBERS_RECORD_LABELS_UPDATER is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $SHOW_ADMINISTRATORS_IN_USERS_LIST is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $MAX_MERGE_RECORDS is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $INTERVAL_FOR_NOTIFICATION_NUMBER_CHECK is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $INVENTORY_EDIT_VIEW_LAYOUT is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $ENABLE_CACHING_USERS is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $OWNER_MINIMUM_INPUT_LENGTH is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $CRON_MAX_NUMBERS_RECORD_PRIVILEGES_UPDATER is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $SEARCH_SHOW_OWNER_ONLY_IN_LIST is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $SEARCH_OWNERS_BY_AJAX is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $BROWSING_HISTORY_VIEW_LIMIT is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $RECORD_POPOVER_DELAY is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $MAX_NUMBER_EXPORT_RECORDS is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $SHOW_ADMIN_PANEL is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $BROWSING_HISTORY_WORKING is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $CHART_ADDITIONAL_FILTERS_LIMIT is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $ENABLE_CACHING_DB_CONNECTION is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $SEARCH_REFERENCE_BY_AJAX is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $CRON_MAX_NUMBERS_RECORD_ADDRESS_BOOK_UPDATER is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $LOGIN_HISTORY_VIEW_LIMIT is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $CACHING_DRIVER is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $REPORT_RECORD_NUMBERS is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $DB_DEFAULT_CHARSET_UTF8 is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $GLOBAL_SEARCH is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $CHART_MULTI_FILTER_LIMIT is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

The property $MODULES_SPLITTED_EDIT_VIEW_LAYOUT is not named in camelCase.
Open

class Performance
{
    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
    public static $CACHING_DRIVER = 'Base';

Severity: Minor
Found in config/Performance.php by phpmd

CamelCasePropertyName

Since: 0.2

It is considered best practice to use the camelCase notation to name attributes.

Example

class ClassName {
    protected $property_name;
}

Source

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

    public static $ENABLE_CACHING_USERS = false;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** Time to update number of notifications in seconds */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** The maximum number of records in address book to be updated in cron */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** The maximum number of emails that cron can send during a single execution. Pay attention to the server limits. */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $SESSION_DRIVER = 'File';
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** Number of records that can be shown in history login modal */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

Line exceeds 120 characters; contains 124 characters
Open

    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** If database default charset is UTF-8, set this to true. This avoids executing the SET NAMES SQL for each query! */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** Compute list view record count while loading listview each time. Recommended value false */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** Show in search engine/filters only users and groups available in records list. It might result in a longer search time. */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $SEARCH_OWNERS_BY_AJAX = false;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $maxMassDeleteRecords = 1000;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** Number of browsing history steps */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $picklistLimit = 50;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $ENABLE_CACHING_DB_CONNECTION = false;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $LISTVIEW_COMPUTE_PAGE_COUNT = false;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $BROWSING_HISTORY_DELETE_AFTER = 7;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** Charts multi filter limit */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

     * Functionality notifying about activity on the record
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** Data caching is about storing some PHP variables in cache and retrieving it later from cache. Drivers: Base, Apcu */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $quickCreateLayout = 'blocks';
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

     */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $recordActivityNotifier = false;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $AUTO_REFRESH_RECORD_LIST_ON_SELECT_CHANGE = true;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** Search owners by AJAX. We recommend selecting the "true" value if there are numerous users in the system. */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $MAX_NUMBER_EXPORT_RECORDS = 500;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** Minimum number of characters to search for record owner */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** Minimum number of characters to search for role */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $BROWSING_HISTORY_VIEW_LIMIT = 20;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** Additional filters limit for ChartFilter's */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $MODULES_SPLITTED_EDIT_VIEW_LAYOUT = [];
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

     *
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $DB_DEFAULT_CHARSET_UTF8 = true;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** Max number of transfer ownership records */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $CRON_MAX_NUMBERS_RECORD_LABELS_UPDATER = 10000;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** The maximum number of attachments that cron can delete during a single execution */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $CRON_MAX_ATACHMENTS_DELETE = 1000;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

     */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $SHOW_ADMIN_PANEL = false;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** Can CRM have access to the Internet? */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** List of modules with splitted edit view layout */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $quickEditLayout = 'blocks';
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** Number of records that can be shown in report mail */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $CRON_MAX_NUMBERS_RECORD_PRIVILEGES_UPDATER = 1000000;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $CRON_MAX_NUMBERS_RECORD_ADDRESS_BOOK_UPDATER = 10000;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** Global search: true/false */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** Number of days after which browsing history will be deleted */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

     * @var bool
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

     * @var int Number of seconds
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

     * Parameter that allows to disable file overwriting.
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $CHART_MULTI_FILTER_LIMIT = 5;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $ACCESS_TO_INTERNET = true;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

Line exceeds 120 characters; contains 122 characters
Open

    /** If database default charset is UTF-8, set this to true. This avoids executing the SET NAMES SQL for each query! */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

     * Interval for Record activity notifier
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $SEARCH_SHOW_OWNER_ONLY_IN_LIST = false;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** The maximum number of global search permissions that cron can update during a single execution */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $BROWSING_HISTORY_WORKING = true;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $CHART_ADDITIONAL_FILTERS_LIMIT = 6;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $REPORT_RECORD_NUMBERS = 10;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $OWNER_MINIMUM_INPUT_LENGTH = 2;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $recursiveTranslate = true;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /**
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $recordActivityNotifierInterval = 5;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** Enable caching of user data */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** Enable automatic records list refreshing while changing the value of the selection list */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** Search roles by AJAX */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** Search reference by AJAX. We recommend selecting the "true" value if there are numerous users in the system. */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** The numbers of emails downloaded during one scanning */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** The maximum number of record labels that cron can update during a single execution */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $CRON_MAX_NUMBERS_SENDING_MAILS = 1000;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $SHOW_ADMINISTRATORS_IN_USERS_LIST = true;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** Change the locale for sort the data */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $CACHING_DRIVER = 'Base';
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $SEARCH_ROLES_BY_AJAX = false;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $maxMassTransferOwnershipRecords = 1000;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $ROLE_MINIMUM_INPUT_LENGTH = 2;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /**
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

     * After enabling it the system will additionally check whether the file exists in the custom directory. Ex. custom/modules/Assets/Assets.php.
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $LOAD_CUSTOM_FILES = false;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $CHANGE_LOCALE = true;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $RECORD_POPOVER_DELAY = 500;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** If there is no translation in the chosen language, then get from the default language. */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** Parameter defining how fields are displayed in quick create. Available values: blocks,standard */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** Enable caching database instance, accelerate time database connection */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

Line exceeds 120 characters; contains 146 characters
Open

     * After enabling it the system will additionally check whether the file exists in the custom directory. Ex. custom/modules/Assets/Assets.php.
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $GLOBAL_SEARCH = true;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** Parameter defining how fields are displayed in quick edit. Available values: standard,blocks,vertical */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $LOGIN_HISTORY_VIEW_LIMIT = 10;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

     *
Severity: Minor
Found in config/Performance.php by phpcodesniffer

Line exceeds 120 characters; contains 121 characters
Open

    /** The maximum number of emails that cron can send during a single execution. Pay attention to the server limits. */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** Is divided layout style on edit view in modules with products */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $INVENTORY_EDIT_VIEW_LAYOUT = true;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /**
Severity: Minor
Found in config/Performance.php by phpcodesniffer

Line exceeds 120 characters; contains 130 characters
Open

    /** Show in search engine/filters only users and groups available in records list. It might result in a longer search time. */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** Max number of mass deleted records */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** Parameter that determines whether admin panel should be available to admin by default */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** Display administrators in the list of users (Assigned To) */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** Browsing history working if true */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** Session handler name, handler dir: app/Session/ */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** Maximum number of merged records */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** Popover record's trigger delay in ms */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** Number of items displayed in picklists. */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $INTERVAL_FOR_NOTIFICATION_NUMBER_CHECK = 100;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $SEARCH_REFERENCE_BY_AJAX = false;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    /** Max number of exported records */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $NUMBERS_EMAILS_DOWNLOADED_DURING_ONE_SCANNING = 100;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

    public static $MAX_MERGE_RECORDS = 4;
Severity: Minor
Found in config/Performance.php by phpcodesniffer

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

     */
Severity: Minor
Found in config/Performance.php by phpcodesniffer

There are no issues that match your filters.

Category
Status