1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
| { "preset": "laravel", "rules": { "array_syntax": { "syntax": "short" }, "ordered_imports": true, "no_useless_else" : true, "no_useless_return": true, "php_unit_construct": true, "php_unit_strict": true, "yoda_style": false, "phpdoc_summary": false, "phpdoc_no_empty_return": false, "not_operator_with_successor_space": true, "no_superfluous_phpdoc_tags": false, "binary_operator_spaces": { "default": "align_single_space" }, "single_trait_insert_per_statement": false, "blank_line_before_statement": { "statements": ["declare"] } }, "exclude": [ "storage", "resources", "public" ] }
|