Conditions | 2 |
Paths | 2 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
16 | public function setupTravisIdentityToGit() |
||
17 | { |
||
18 | if (getenv('TRAVIS')) { |
||
19 | (new Process('git config user.email "[email protected]"'))->run(); |
||
20 | (new Process('git config user.name "Travis"'))->run(); |
||
21 | } |
||
22 | } |
||
23 | |||
35 |