@@ -247,9 +247,9 @@ public function __construct()
247
247
'no_whitespace_in_blank_line ' => true ,
248
248
'non_printable_character ' => ['use_escape_sequences_in_strings ' => true ],
249
249
'normalize_index_brace ' => true ,
250
- 'nullable_type_declaration_for_default_null_value ' => ['use_nullable_type_declaration ' => true ],
251
250
'not_operator_with_space ' => false ,
252
251
'not_operator_with_successor_space ' => true ,
252
+ 'nullable_type_declaration_for_default_null_value ' => ['use_nullable_type_declaration ' => true ],
253
253
'object_operator_without_whitespace ' => true ,
254
254
'operator_linebreak ' => ['only_booleans ' => true , 'position ' => 'beginning ' ],
255
255
'ordered_class_elements ' => false ,
@@ -308,8 +308,9 @@ public function __construct()
308
308
'var ' ,
309
309
],
310
310
],
311
- 'phpdoc_indent ' => true ,
312
- 'phpdoc_inline_tag_normalizer ' => [
311
+ 'phpdoc_annotation_without_dot ' => false ,
312
+ 'phpdoc_indent ' => true ,
313
+ 'phpdoc_inline_tag_normalizer ' => [
313
314
'tags ' => [
314
315
'example ' ,
315
316
'id ' ,
@@ -358,6 +359,16 @@ public function __construct()
358
359
'uses ' ,
359
360
],
360
361
],
362
+ 'phpdoc_return_self_reference ' => [
363
+ 'replacements ' => [
364
+ 'this ' => '$this ' ,
365
+ '@this ' => '$this ' ,
366
+ '$self ' => 'self ' ,
367
+ '@self ' => 'self ' ,
368
+ '$static ' => 'static ' ,
369
+ '@static ' => 'static ' ,
370
+ ],
371
+ ],
361
372
'phpdoc_scalar ' => [
362
373
'types ' => [
363
374
'boolean ' ,
@@ -369,6 +380,8 @@ public function __construct()
369
380
],
370
381
],
371
382
'phpdoc_separation ' => true ,
383
+ 'phpdoc_single_line_var_spacing ' => true ,
384
+ 'phpdoc_summary ' => false ,
372
385
'phpdoc_trim ' => true ,
373
386
'phpdoc_trim_consecutive_blank_line_separation ' => true ,
374
387
'phpdoc_types ' => ['groups ' => ['simple ' , 'alias ' , 'meta ' ]],
@@ -404,7 +417,7 @@ public function __construct()
404
417
'single_class_element_per_statement ' => ['elements ' => ['const ' , 'property ' ]],
405
418
'single_import_per_statement ' => true ,
406
419
'single_line_after_imports ' => true ,
407
- 'single_line_comment_style ' => true ,
420
+ 'single_line_comment_style ' => [ ' comment_types ' => [ ' asterisk ' , ' hash ' ]] ,
408
421
'single_line_throw ' => false ,
409
422
'single_quote ' => ['strings_containing_single_quote_chars ' => false ],
410
423
'single_space_after_construct ' => [
0 commit comments