Conditions | 1 |
Paths | 1 |
Total Lines | 20 |
Code Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | public static function get() |
||
8 | { |
||
9 | $config = new \stdClass(); |
||
10 | $config->{'default_standard'} = ['PSR1', 'PSR2']; |
||
11 | |||
12 | $config->files = new \stdClass(); |
||
13 | $config->files->in = ['.']; |
||
14 | $config->files->name = ['*.php']; |
||
15 | $config->files->files = true; |
||
16 | $config->files->exclude = [ |
||
17 | 'build', |
||
18 | 'bower_components', |
||
19 | 'node_modules', |
||
20 | 'vendor', |
||
21 | ]; |
||
22 | $config->files->ignoreDotFiles = true; |
||
23 | $config->files->ignoreVCS = true; |
||
24 | |||
25 | return $config; |
||
26 | } |
||
27 | } |
||
28 |