Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 11 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
27 | 2 | public static function create(Container $services) |
|
28 | { |
||
29 | 2 | return new Planner([ |
|
30 | 2 | new BootstrapQuestion($services), |
|
31 | 2 | new NameQuestion($services), |
|
32 | 2 | new DirectoryPathQuestion($services), |
|
33 | 2 | new DescriptionQuestion($services), |
|
34 | 2 | new HomepageQuestion($services), |
|
35 | 2 | new KeywordsQuestion($services), |
|
36 | 2 | new AuthorQuestion($services), |
|
37 | 2 | new PackageQuestion($services), |
|
38 | 2 | ]); |
|
39 | } |
||
40 | } |
||
41 |