| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 3 | ||
| Bugs | 0 | Features | 3 |
| 1 | <?php |
||
| 27 | 4 | public static function create() |
|
| 28 | { |
||
| 29 | 4 | $definition = array( |
|
| 30 | 4 | 'docker.socket.path' => array('/var/run/docker.sock', null), |
|
| 31 | 'docker.client.path' => array('/usr/bin/docker', null), |
||
| 32 | 'script.exit-early' => array(false, null), |
||
| 33 | 4 | 'step.clone-path' => array('/app', Types::ABSPATH), |
|
| 34 | ); |
||
| 35 | |||
| 36 | 4 | return new self($definition, new Types()); |
|
| 37 | } |
||
| 72 |