-
Notifications
You must be signed in to change notification settings - Fork 1
/
.php_cs
593 lines (593 loc) · 28.7 KB
/
.php_cs
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
<?php
/*
* This document has been generated with
* https://mlocati.github.io/php-cs-fixer-configurator/#version:2.15.3|configurator
* you can change this configuration by importing this file.
*/
return PhpCsFixer\Config::create()
->setRiskyAllowed(true)
->setRules([
// Each line of multi-line DocComments must have an asterisk
// [PSR-5] and must be aligned with the first one.
'align_multiline_comment' => true,
// Each element of an array must be indented exactly once.
'array_indentation' => true,
// PHP arrays should be declared using the configured syntax.
'array_syntax' => true,
// There MUST be one blank line after the namespace declaration.
'blank_line_after_namespace' => true,
// Ensure there is no code on the same line as the PHP open tag
// and it is followed by a blank line.
'blank_line_after_opening_tag' => true,
// An empty line feed should precede a return statement.
'blank_line_before_return' => true,
// An empty line feed must precede any configured statement.
'blank_line_before_statement' => true,
// The body of each structure MUST be enclosed by braces. Braces
// should be properly placed. Body of braces should be properly
// indented.
'braces' => true,
// A single space or none should be between cast and variable.
'cast_spaces' => true,
// Class, trait and interface elements must be separated with
// one blank line.
'class_attributes_separation' => true,
// Whitespace around the keywords of a class, trait or
// interfaces definition should be one space.
'class_definition' => true,
// Converts `::class` keywords to FQCN strings.
'class_keyword_remove' => true,
// Using `isset($var) &&` multiple times should be done in one
// call.
'combine_consecutive_issets' => true,
// Calling `unset` on multiple items should be done in one call.
'combine_consecutive_unsets' => true,
// Replace multiple nested calls of `dirname` by only one call
// with second `$level` parameter. Requires PHP >= 7.0.
/*'combine_nested_dirname' => true,*/
// Comments with annotation should be docblock when used on
// structural elements.
'comment_to_phpdoc' => true,
// Remove extra spaces in a nullable typehint.
'compact_nullable_typehint' => true,
// Concatenation should be spaced according configuration.
'concat_space' => true,
// Class `DateTimeImmutable` should be used instead of
// `DateTime`.
'date_time_immutable' => true,
// Equal sign in declare statement should be surrounded by
// spaces or not following configuration.
'declare_equal_normalize' => true,
// Force strict types declaration in all files.
// Requires PHP >= 7.0.
/*'declare_strict_types' => true,*/
// Replaces `dirname(__FILE__)` expression with equivalent
// `__DIR__` constant.
'dir_constant' => true,
// Doctrine annotations must use configured operator for
// assignment in arrays.
'doctrine_annotation_array_assignment' => true,
// Doctrine annotations without arguments must use the
// configured syntax.
'doctrine_annotation_braces' => true,
// Doctrine annotations must be indented with four spaces.
'doctrine_annotation_indentation' => true,
// Fixes spaces in Doctrine annotations.
'doctrine_annotation_spaces' => true,
// The keyword `elseif` should be used instead of `else if` so
// that all control keywords look like single words.
'elseif' => true,
// PHP code MUST use only UTF-8 without BOM (remove BOM).
'encoding' => true,
// Replace deprecated `ereg` regular expression functions with
// `preg`.
'ereg_to_preg' => true,
// Error control operator should be added to deprecation notices
// and/or removed from other cases.
'error_suppression' => true,
// Escape implicit backslashes in strings and heredocs to ease
// the understanding of which are special chars interpreted by
// PHP and which not.
'escape_implicit_backslashes' => true,
// Add curly braces to indirect variables to make them clear to
// understand. Requires PHP >= 7.0.
/*'explicit_indirect_variable' => true,*/
// Converts implicit variables into explicit ones in
// double-quoted strings or heredoc syntax.
'explicit_string_variable' => true,
// All classes must be final, except abstract ones and Doctrine
// entities.
'final_class' => true,
// Internal classes should be `final`.
'final_internal_class' => true,
// Order the flags in `fopen` calls, `b` and `t` must be last.
'fopen_flag_order' => true,
// The flags in `fopen` calls must omit `t`, and `b` must be
// omitted or included consistently.
'fopen_flags' => true,
// PHP code must use the long `<?php` tags or short-echo `<?=`
// tags and not other tag variations.
'full_opening_tag' => true,
// Transforms imported FQCN parameters and return types in
// function arguments to short version.
'fully_qualified_strict_types' => true,
// Spaces should be properly placed in a function declaration.
'function_declaration' => true,
// Replace core functions calls returning constants with the
// constants.
'function_to_constant' => true,
// Ensure single space between function's argument and its
// typehint.
'function_typehint_space' => true,
// Configured annotations should be omitted from PHPDoc.
'general_phpdoc_annotation_remove' => true,
// Single line comments should use double slashes `//` and not
// hash `#`.
'hash_to_slash_comment' => true,
// Add, replace or remove header comment.
'header_comment' => true,
// Heredoc/nowdoc content must be properly indented.
// Requires PHP >= 7.3.
/*'heredoc_indentation' => true,*/
// Convert `heredoc` to `nowdoc` where possible.
'heredoc_to_nowdoc' => true,
// Function `implode` must be called with 2 arguments in the
// documented order.
'implode_call' => true,
// Include/Require and file path should be divided with a single
// space. File path should not be placed under brackets.
'include' => true,
// Pre- or post-increment and decrement operators should be used
// if possible.
'increment_style' => true,
// Code MUST use configured indentation type.
'indentation_type' => true,
// Replaces `is_null($var)` expression with `null === $var`.
'is_null' => false,
// All PHP files must use same line ending.
'line_ending' => true,
// Ensure there is no code on the same line as the PHP open tag.
'linebreak_after_opening_tag' => true,
// List (`array` destructuring) assignment should be declared
// using the configured syntax. Requires PHP >= 7.1.
/*'list_syntax' => true,*/
// Use `&&` and `||` logical operators instead of `and` and
// `or`.
'logical_operators' => true,
// Cast should be written in lower case.
'lowercase_cast' => true,
// The PHP constants `true`, `false`, and `null` MUST be in
// lower case.
'lowercase_constants' => true,
// PHP keywords MUST be in lower case.
'lowercase_keywords' => true,
// Class static references `self`, `static` and `parent` MUST be
// in lower case.
'lowercase_static_reference' => true,
// Magic constants should be referred to using the correct
// casing.
'magic_constant_casing' => true,
// Magic method definitions and calls must be using the correct
// casing.
'magic_method_casing' => true,
// Replace non multibyte-safe functions with corresponding mb
// function.
'mb_str_functions' => true,
// In method arguments and method call, there MUST NOT be a
// space before each comma and there MUST be one space after
// each comma. Argument lists MAY be split across multiple
// lines, where each subsequent line is indented once. When
// doing so, the first item in the list MUST be on the next
// line, and there MUST be only one argument per line.
'method_argument_space' => true,
// Method chaining MUST be properly indented. Method chaining
// with different levels of indentation is not supported.
'method_chaining_indentation' => true,
// Methods must be separated with one blank line.
'method_separation' => true,
// Replaces `intval`, `floatval`, `doubleval`, `strval` and
// `boolval` function calls with according type casting
// operator.
'modernize_types_casting' => true,
// DocBlocks must start with two asterisks, multiline comments
// must start with a single asterisk, after the opening slash.
// Both must end with a single asterisk before the closing
// slash.
'multiline_comment_opening_closing' => true,
// Forbid multi-line whitespace before the closing semicolon or
// move the semicolon to the new line for chained calls.
'multiline_whitespace_before_semicolons' => true,
// Add leading `\` before constant invocation of internal
// constant to speed up resolving. Constant name match is
// case-sensitive, except for `null`, `false` and `true`.
'native_constant_invocation' => true,
// Function defined by PHP should be called using the correct
// casing.
'native_function_casing' => true,
// Add leading `\` before function invocation to speed up
// resolving.
'native_function_invocation' => true,
// Native type hints for functions should use the correct case.
'native_function_type_declaration_casing' => true,
// All instances created with new keyword must be followed by
// braces.
'new_with_braces' => true,
// Master functions shall be used instead of aliases.
'no_alias_functions' => true,
// Replace control structure alternative syntax to use braces.
'no_alternative_syntax' => true,
// There should not be a binary flag before strings.
'no_binary_string' => true,
// There should be no empty lines after class opening brace.
'no_blank_lines_after_class_opening' => true,
// There should not be blank lines between docblock and the
// documented element.
'no_blank_lines_after_phpdoc' => true,
// There should be no blank lines before a namespace
// declaration.
'no_blank_lines_before_namespace' => true,
// There must be a comment when fall-through is intentional in a
// non-empty case body.
'no_break_comment' => true,
// The closing `? >` tag MUST be omitted from files containing
// only PHP.
'no_closing_tag' => true,
// There should not be any empty comments.
'no_empty_comment' => true,
// There should not be empty PHPDoc blocks.
'no_empty_phpdoc' => true,
// Remove useless semicolon statements.
'no_empty_statement' => true,
// Removes extra blank lines and/or blank lines following
// configuration.
'no_extra_blank_lines' => true,
// Removes extra blank lines and/or blank lines following
// configuration.
'no_extra_consecutive_blank_lines' => true,
// Replace accidental usage of homoglyphs (non ascii characters)
// in names.
'no_homoglyph_names' => true,
// Remove leading slashes in `use` clauses.
'no_leading_import_slash' => true,
// The namespace declaration line shouldn't contain leading
// whitespace.
'no_leading_namespace_whitespace' => true,
// Either language construct `print` or `echo` should be used.
'no_mixed_echo_print' => true,
// Operator `=>` should not be surrounded by multi-line
// whitespaces.
'no_multiline_whitespace_around_double_arrow' => true,
// Multi-line whitespace before closing semicolon are
// prohibited.
'no_multiline_whitespace_before_semicolons' => true,
// Properties MUST not be explicitly initialized with `null`.
'no_null_property_initialization' => true,
// Convert PHP4-style constructors to `__construct`.
'no_php4_constructor' => true,
// Short cast `bool` using double exclamation mark should not be
// used.
'no_short_bool_cast' => true,
// Replace short-echo `<?=` with long format `<?php echo`
// syntax.
'no_short_echo_tag' => false,
// Single-line whitespace before closing semicolon are
// prohibited.
'no_singleline_whitespace_before_semicolons' => true,
// When making a method or function call, there MUST NOT be a
// space between the method or function name and the opening
// parenthesis.
'no_spaces_after_function_name' => true,
// There MUST NOT be spaces around offset braces.
'no_spaces_around_offset' => true,
// There MUST NOT be a space after the opening parenthesis.
// There MUST NOT be a space before the closing parenthesis.
'no_spaces_inside_parenthesis' => true,
// Replaces superfluous `elseif` with `if`.
'no_superfluous_elseif' => false,
// Removes `@param` and `@return` tags that don't provide any
// useful information.
'no_superfluous_phpdoc_tags' => false,
// Remove trailing commas in list function calls.
'no_trailing_comma_in_list_call' => true,
// PHP single-line arrays should not have trailing comma.
'no_trailing_comma_in_singleline_array' => true,
// Remove trailing whitespace at the end of non-blank lines.
'no_trailing_whitespace' => true,
// There MUST be no trailing spaces inside comment or PHPDoc.
'no_trailing_whitespace_in_comment' => true,
// Removes unneeded parentheses around control statements.
'no_unneeded_control_parentheses' => true,
// Removes unneeded curly braces that are superfluous and aren't
// part of a control structure's body.
'no_unneeded_curly_braces' => true,
// A final class must not have final methods.
'no_unneeded_final_method' => true,
// In function arguments there must not be arguments with
// default values before non-default ones.
'no_unreachable_default_argument_value' => true,
// Variables must be set `null` instead of using `(unset)`
// casting.
'no_unset_cast' => true,
// Properties should be set to `null` instead of using `unset`.
'no_unset_on_property' => true,
// Unused `use` statements must be removed.
'no_unused_imports' => true,
// There should not be useless `else` cases.
'no_useless_else' => true,
// There should not be an empty `return` statement at the end of
// a function.
'no_useless_return' => true,
// In array declaration, there MUST NOT be a whitespace before
// each comma.
'no_whitespace_before_comma_in_array' => true,
// Remove trailing whitespace at the end of blank lines.
'no_whitespace_in_blank_line' => true,
// Remove Zero-width space (ZWSP), Non-breaking space (NBSP) and
// other invisible unicode symbols.
'non_printable_character' => true,
// Array index should always be written by using square braces.
'normalize_index_brace' => true,
// Logical NOT operators (`!`) should have leading and trailing
// whitespaces.
'not_operator_with_space' => false,
// Logical NOT operators (`!`) should have one trailing
// whitespace.
'not_operator_with_successor_space' => true,
// There should not be space before or after object
// `T_OBJECT_OPERATOR` `->`.
'object_operator_without_whitespace' => true,
// Orders the elements of classes/interfaces/traits.
'ordered_class_elements' => true,
// Ordering `use` statements.
'ordered_imports' => true,
// Orders the interfaces in an `implements` or `interface
// extends` clause.
'ordered_interfaces' => true,
// PHPUnit assertion method calls like
// `->assertSame(true, $foo)` should be written with dedicated
// method like `->assertTrue($foo)`.
'php_unit_construct' => true,
// PHPUnit assertions like `assertInternalType`,
// `assertFileExists`, should be used over `assertTrue`.
'php_unit_dedicate_assert' => true,
// PHPUnit assertions like `assertIsArray` should be used over
// `assertInternalType`.
'php_unit_dedicate_assert_internal_type' => true,
// Usages of `->setExpectedException*` methods MUST be replaced
// by `->expectException*` methods.
'php_unit_expectation' => true,
// PHPUnit annotations should be a FQCNs including a root
// namespace.
'php_unit_fqcn_annotation' => true,
// All PHPUnit test classes should be marked as internal.
'php_unit_internal_class' => true,
// Enforce camel (or snake) case for PHPUnit test methods,
// following configuration.
'php_unit_method_casing' => true,
// Usages of `->getMock` and
// `->getMockWithoutInvokingTheOriginalConstructor` methods
// MUST be replaced by `->createMock` or `->createPartialMock`
// methods.
'php_unit_mock' => true,
// Usage of PHPUnit's mock e.g. `->will($this->returnValue(..))`
// must be replaced by its shorter equivalent such as
// `->willReturn(...)`.
'php_unit_mock_short_will_return' => true,
// PHPUnit classes MUST be used in namespaced version, e.g.
// `\PHPUnit\Framework\TestCase` instead of
// `\PHPUnit_Framework_TestCase`.
'php_unit_namespaced' => true,
// Usages of `@expectedException*` annotations MUST be replaced
// by `->setExpectedException*` methods.
'php_unit_no_expectation_annotation' => true,
// Order `@covers` annotation of PHPUnit tests.
'php_unit_ordered_covers' => true,
// Changes the visibility of the `setUp()` and `tearDown()`
// functions of PHPUnit to `protected`, to match the PHPUnit
// TestCase.
'php_unit_set_up_tear_down_visibility' => true,
// All PHPUnit test cases should have `@small`, `@medium` or
// `@large` annotation to enable run time limits.
'php_unit_size_class' => true,
// PHPUnit methods like `assertSame` should be used instead of
// `assertEquals`.
'php_unit_strict' => true,
// Adds or removes @test annotations from tests, following
// configuration.
'php_unit_test_annotation' => true,
// Calls to `PHPUnit\Framework\TestCase` static methods must all
// be of the same type, either `$this->`, `self::` or
// `static::`.
'php_unit_test_case_static_method_calls' => true,
// Adds a default `@coversNothing` annotation to PHPUnit test
// classes that have no `@covers*` annotation.
/*'php_unit_test_class_requires_covers' => true,*/
// PHPDoc should contain `@param` for all params.
'phpdoc_add_missing_param_annotation' => true,
// All items of the given phpdoc tags must be either
// left-aligned or (by default) aligned vertically.
'phpdoc_align' => false,
// PHPDoc annotation descriptions should not be a sentence.
'phpdoc_annotation_without_dot' => true,
// Docblocks should have the same indentation as the documented
// subject.
'phpdoc_indent' => true,
// Fix PHPDoc inline tags, make `@inheritdoc` always inline.
'phpdoc_inline_tag' => true,
// `@access` annotations should be omitted from PHPDoc.
'phpdoc_no_access' => true,
// No alias PHPDoc tags should be used.
'phpdoc_no_alias_tag' => true,
// `@return void` and `@return null` annotations should be
// omitted from PHPDoc.
'phpdoc_no_empty_return' => true,
// `@package` and `@subpackage` annotations should be omitted
// from PHPDoc.
'phpdoc_no_package' => true,
// Classy that does not inherit must not have `@inheritdoc`
// tags.
'phpdoc_no_useless_inheritdoc' => true,
// Annotations in PHPDoc should be ordered so that `@param`
// annotations come first, then `@throws` annotations, then
// `@return` annotations.
'phpdoc_order' => true,
// The type of `@return` annotations of methods returning a
// reference to itself must the configured one.
'phpdoc_return_self_reference' => true,
// Scalar types should always be written in the same form. `int`
// not `integer`, `bool` not `boolean`, `float` not `real` or
// `double`.
'phpdoc_scalar' => true,
// Annotations in PHPDoc should be grouped together so that
// annotations of the same type immediately follow each other,
// and annotations of a different type are separated by a single
// blank line.
'phpdoc_separation' => true,
// Single line `@var` PHPDoc should have proper spacing.
'phpdoc_single_line_var_spacing' => true,
// PHPDoc summary should end in either a full stop, exclamation
// mark, or question mark.
'phpdoc_summary' => true,
// Docblocks should only be used on structural elements.
'phpdoc_to_comment' => true,
// EXPERIMENTAL: Takes `@return` annotation of non-mixed types
// and adjusts accordingly the function signature.
// Requires PHP >= 7.0.
/*'phpdoc_to_return_type' => true,*/
// PHPDoc should start and end with content, excluding the very
// first and last line of the docblocks.
'phpdoc_trim' => true,
// Removes extra blank lines after summary and after description
// in PHPDoc.
'phpdoc_trim_consecutive_blank_line_separation' => true,
// The correct case must be used for standard PHP types in
// PHPDoc.
'phpdoc_types' => true,
// Sorts PHPDoc types.
'phpdoc_types_order' => true,
// `@var` and `@type` annotations must have type and name in the
// correct order.
'phpdoc_var_annotation_correct_order' => true,
// `@var` and `@type` annotations should not contain the
// variable name.
'phpdoc_var_without_name' => true,
// Converts `pow` to the `**` operator.
'pow_to_exponentiation' => true,
// Pre incrementation/decrementation should be used if possible.
'pre_increment' => true,
// Converts `protected` variables and methods to `private` where
// possible.
'protected_to_private' => true,
// Classes must be in a path that matches their namespace, be at
// least one namespace deep and the class name should match the
// file name.
'psr0' => false,
// Class names should match the file name.
'psr4' => true,
// Replaces `rand`, `srand`, `getrandmax` functions calls with
// their `mt_*` analogs.
'random_api_migration' => true,
// Local, dynamic and directly referenced variables should not
// be assigned and directly returned by a function or method.
'return_assignment' => true,
// There should be one or no space before colon, and one space
// after it in return type declarations, according to
// configuration.
'return_type_declaration' => true,
// Inside class or interface element `self` should be preferred
// to the class name itself.
'self_accessor' => true,
// Instructions must be terminated with a semicolon.
'semicolon_after_instruction' => true,
// Cast shall be used, not `settype`.
'set_type_to_cast' => true,
// Cast `(boolean)` and `(integer)` should be written as
// `(bool)` and `(int)`, `(double)` and `(real)` as `(float)`,
// `(binary)` as `(string)`.
'short_scalar_cast' => true,
// Ensures deprecation notices are silenced.
'silenced_deprecation_error' => true,
// Converts explicit variables in double-quoted strings and
// heredoc syntax from simple to complex format (`${` to `{$`).
'simple_to_complex_string_variable' => true,
// A return statement wishing to return `void` should not return
// `null`.
'simplified_null_return' => true,
// A PHP file without end tag must always end with a single
// empty line feed.
'single_blank_line_at_eof' => true,
// There should be exactly one blank line before a namespace
// declaration.
'single_blank_line_before_namespace' => true,
// There MUST NOT be more than one property or constant declared
// per statement.
'single_class_element_per_statement' => true,
// There MUST be one use keyword per declaration.
'single_import_per_statement' => true,
// Each namespace use MUST go on its own line and there MUST be
// one blank line after the use statements block.
'single_line_after_imports' => true,
// Single-line comments and multi-line comments with only one
// line of actual content should use the `//` syntax.
'single_line_comment_style' => false,
// Convert double quotes to single quotes for simple strings.
'single_quote' => true,
// Each trait `use` must be done as single statement.
'single_trait_insert_per_statement' => true,
// Fix whitespace after a semicolon.
'space_after_semicolon' => true,
// Increment and decrement operators should be used if possible.
'standardize_increment' => true,
// Replace all `<>` with `!=`.
'standardize_not_equals' => true,
// Lambdas not (indirect) referencing `$this` must be declared
// `static`.
'static_lambda' => true,
// Comparisons should be strict.
'strict_comparison' => true,
// Functions should be used with `$strict` param set to `true`.
'strict_param' => true,
// All multi-line strings must use correct line ending.
'string_line_ending' => true,
// A case should be followed by a colon and not a semicolon.
'switch_case_semicolon_to_colon' => true,
// Removes extra spaces between colon and case value.
'switch_case_space' => true,
// Standardize spaces around ternary operator.
'ternary_operator_spaces' => true,
// Use `null` coalescing operator `??` where possible.
// Requires PHP >= 7.0.
/*'ternary_to_null_coalescing' => true,*/
// PHP multi-line arrays should have a trailing comma.
'trailing_comma_in_multiline_array' => true,
// Arrays should be formatted like function/method arguments,
// without leading or trailing single line space.
'trim_array_spaces' => true,
// Unary operators should be placed adjacent to their operands.
'unary_operator_spaces' => true,
// Visibility MUST be declared on all properties and methods;
// `abstract` and `final` MUST be declared before the
// visibility; `static` MUST be declared after the visibility.
'visibility_required' => true,
// Add void return type to functions with missing or empty
// return statements, but priority is given to `@return`
// annotations.
// Requires PHP >= 7.1.
/*'void_return' => true,*/
// In array declaration, there MUST be a whitespace after each
// comma.
'whitespace_after_comma_in_array' => true,
// Write conditions in Yoda style (`true`), non-Yoda style
// (`false`) or ignore those conditions (`null`) based on
// configuration.
'yoda_style' => null,
// Converts backtick operators to `shell_exec` calls.
'backtick_to_shell_exec' => true,
// Binary operators should be surrounded by space as configured.
'binary_operator_spaces' => true,
])
->setFinder(PhpCsFixer\Finder::create()
->exclude('vendor')
->exclude('build')
->in(__DIR__)
);