Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
29 | 6 | public static function build(EventDispatcherInterface $eventDispatcher, LoggerInterface $logger) |
|
30 | { |
||
31 | 6 | return new Workflow($eventDispatcher, $logger, array( |
|
32 | 6 | new Fetch(), |
|
33 | 6 | new Process(), |
|
34 | 6 | new Name(), |
|
35 | 6 | new PreRotate(), |
|
36 | 6 | new Push(), |
|
37 | 6 | new PostRotate() |
|
38 | 3 | )); |
|
39 | } |
||
40 | } |
||
41 |