forked from semsol/arc2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.php_cs
More file actions
35 lines (34 loc) · 1001 Bytes
/
Copy path.php_cs
File metadata and controls
35 lines (34 loc) · 1001 Bytes
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
<?php
return PhpCsFixer\Config::create()
->setRules(
[
'@Symfony' => true,
'@Symfony:risky' => true,
'align_multiline_comment' => true,
'array_syntax' => ['syntax' => 'short'],
'array_indentation' => true,
]
)
->setRiskyAllowed(true)
->setFinder(
PhpCsFixer\Finder::create()
->files()
->in(__DIR__.'/extractors')
->in(__DIR__.'/parsers')
->in(__DIR__.'/serializers')
->in(__DIR__.'/sparqlscript')
->in(__DIR__.'/src')
->in(__DIR__.'/store')
->in(__DIR__.'/tests')
->name('*.php')
->append([
__FILE__,
__DIR__.'/ARC2.php',
__DIR__.'/ARC2_Class.php',
__DIR__.'/ARC2_getFormat.php',
__DIR__.'/ARC2_getPreferredFormat.php',
__DIR__.'/ARC2_Graph.php',
__DIR__.'/ARC2_Reader.php',
__DIR__.'/ARC2_Ressource.php',
])
);