forked from matthijsch/cookie-consent-bundle-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.php_cs.dist
28 lines (27 loc) · 803 Bytes
/
.php_cs.dist
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
<?php
return PhpCsFixer\Config::create()
->setRules([
'@Symfony' => true,
'declare_strict_types' => true,
'ordered_imports' => true,
'psr0' => false,
'yoda_style' => false,
'phpdoc_order' => true,
'array_syntax' => [
'syntax' => 'short',
],
'binary_operator_spaces' => [
'align_equals' => true,
'align_double_arrow' => true,
],
'header_comment' => [
'header' => <<<EOH
This file is part of the ConnectHolland CookieConsentBundle package.
(c) Connect Holland.
EOH
,
]
])
->setFinder(
PhpCsFixer\Finder::create()->in(__DIR__)
);