Skip to content

Commit 47c92ba

Browse files
committed
Enable statement_indentation
1 parent 7b2ad9c commit 47c92ba

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

.php-cs-fixer.dist.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
]);
4040

4141
$overrides = [
42+
// <<<<<<<<<<<<<<<<<<<<<<<< @TODO TO BE REMOVED ONCE LIVE IN CODING-STANDARD
4243
'phpdoc_separation' => [
4344
'groups' => [
4445
['immutable', 'psalm-immutable'],
@@ -52,6 +53,8 @@
5253
['var', 'phpstan-var', 'psalm-var'],
5354
],
5455
],
56+
'statement_indentation' => true,
57+
// >>>>>>>>>>>>>>>>>>>>>>>>>
5558
];
5659

5760
$options = [

.php-cs-fixer.no-header.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
]);
3232

3333
$overrides = [
34+
// <<<<<<<<<<<<<<<<<<<<<<<< @TODO TO BE REMOVED ONCE LIVE IN CODING-STANDARD
3435
'phpdoc_separation' => [
3536
'groups' => [
3637
['immutable', 'psalm-immutable'],
@@ -44,6 +45,8 @@
4445
['var', 'phpstan-var', 'psalm-var'],
4546
],
4647
],
48+
'statement_indentation' => true,
49+
// >>>>>>>>>>>>>>>>>>>>>>>>>
4750
];
4851

4952
$options = [

.php-cs-fixer.user-guide.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@
3333
'php_unit_internal_class' => false,
3434
'no_unused_imports' => false,
3535
'class_attributes_separation' => false,
36-
'phpdoc_separation' => [
36+
// <<<<<<<<<<<<<<<<<<<<<<<< @TODO TO BE REMOVED ONCE LIVE IN CODING-STANDARD
37+
'phpdoc_separation' => [
3738
'groups' => [
3839
['immutable', 'psalm-immutable'],
3940
['param', 'phpstan-param', 'psalm-param'],
@@ -46,6 +47,8 @@
4647
['var', 'phpstan-var', 'psalm-var'],
4748
],
4849
],
50+
'statement_indentation' => true,
51+
// >>>>>>>>>>>>>>>>>>>>>>>>>
4952
];
5053

5154
$options = [

0 commit comments

Comments
 (0)