Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
27 | public static function create( |
||
28 | Composer $composer, |
||
29 | JsonLint $jsonLint, |
||
30 | PhpLint $phpLint, |
||
31 | PhpMd $phpMd, |
||
32 | PhpCs $phpCs, |
||
33 | PhpCsFixer $phpCsFixer, |
||
34 | PhpUnit $phpUnit |
||
35 | ) { |
||
36 | return new Execute([$composer, $jsonLint, $phpLint, $phpMd, $phpCs, $phpCsFixer, $phpUnit]); |
||
37 | } |
||
38 | } |
||
39 |