Conditions | 1 |
Paths | 1 |
Total Lines | 19 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
31 | 1 | public function dump(string $prefix): string |
|
32 | { |
||
33 | 1 | $statements = $this->createStatements($prefix); |
|
34 | 1 | ||
35 | 1 | $statements = implode(PHP_EOL, $statements); |
|
36 | 1 | ||
37 | return <<<PHP |
||
38 | 1 | <?php |
|
39 | 1 | ||
40 | // scoper-autoload.php @generated by PhpScoper |
||
41 | |||
42 | 1 | \$loader = require_once __DIR__.'/autoload.php'; |
|
43 | |||
44 | $statements |
||
45 | |||
46 | return \$loader; |
||
47 | |||
48 | PHP; |
||
49 | } |
||
50 | |||
68 |