We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d058b1 commit 23a34dfCopy full SHA for 23a34df
1 file changed
.php-cs-fixer.dist.php
@@ -43,7 +43,35 @@
43
__DIR__ . '/spark',
44
]);
45
46
-$overrides = [];
+$overrides = [
47
+ 'phpdoc_no_alias_tag' => [
48
+ 'replacements' => [
49
+ 'type' => 'var',
50
+ 'link' => 'see',
51
+ ],
52
53
+ 'phpdoc_align' => [
54
+ 'align' => 'vertical',
55
+ 'spacing' => 1,
56
+ 'tags' => [
57
+ 'method',
58
+ 'param',
59
+ 'phpstan-assert',
60
+ 'phpstan-assert-if-true',
61
+ 'phpstan-assert-if-false',
62
+ 'phpstan-param',
63
+ 'phpstan-property',
64
+ 'phpstan-return',
65
+ 'property',
66
+ 'property-read',
67
+ 'property-write',
68
+ 'return',
69
+ 'throws',
70
+ 'type',
71
+ 'var',
72
73
74
+];
75
76
$options = [
77
'cacheFile' => 'build/.php-cs-fixer.cache',
0 commit comments