HEX
Server: Apache/2.4.46 (Ubuntu)
System: Linux localhost 5.11.0-49-generic #55-Ubuntu SMP Wed Jan 12 17:36:34 UTC 2022 x86_64
User: root (0)
PHP: 7.4.16
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/property.fieldblaze.com/vendor/nesbot/carbon/.php_cs.dist
<?php

use PhpCsFixer\Config;
use PhpCsFixer\Finder;

$rules = array(
    '@PSR2' => true,
    'array_syntax' => array(
        'syntax' => 'long',
    ),
    'binary_operator_spaces' => array(
        'align_double_arrow' => false,
        'align_equals' => false,
    ),
    'blank_line_before_return' => true,
    'cast_spaces' => true,
    'concat_space' => array(
        'spacing' => 'none',
    ),
    'ereg_to_preg' => true,
    'method_separation' => true,
    'no_blank_lines_after_phpdoc' => true,
    'no_extra_consecutive_blank_lines' => true,
    'no_short_bool_cast' => true,
    'no_unneeded_control_parentheses' => true,
    'no_unused_imports' => true,
    'no_whitespace_in_blank_line' => true,
    'ordered_imports' => true,
    'phpdoc_align' => true,
    'phpdoc_indent' => true,
    'phpdoc_inline_tag' => true,
    'phpdoc_no_access' => true,
    'phpdoc_no_alias_tag' => array(
        'type' => 'var',
    ),
    'phpdoc_no_package' => true,
    'phpdoc_order' => true,
    'phpdoc_scalar' => true,
    'phpdoc_separation' => true,
    'phpdoc_to_comment' => true,
    'phpdoc_trim' => true,
    'phpdoc_types' => true,
    'phpdoc_var_without_name' => true,
    'self_accessor' => true,
    'single_quote' => true,
    'space_after_semicolon' => true,
    'standardize_not_equals' => true,
    'ternary_operator_spaces' => true,
    'trailing_comma_in_multiline_array' => true,
    'trim_array_spaces' => true,
    'unary_operator_spaces' => true,
    'line_ending' => true,
    'blank_line_after_namespace' => true,
    'no_unused_imports' => true,
);

return Config::create()->setRules($rules)
             ->setFinder(Finder::create()->in(__DIR__))
             ->setUsingCache(true)
             ->setRiskyAllowed(true);