Conditions | 3 |
Paths | 3 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
28 | 9 | protected function getStub() |
|
29 | { |
||
30 | 9 | if ($this->option('request-only')) { |
|
31 | 3 | return __DIR__ . '/../../stubs/request_only_transition.stub'; |
|
32 | } |
||
33 | 6 | if ($this->option('response-only')) { |
|
34 | 3 | return __DIR__ . '/../../stubs/response_only_transition.stub'; |
|
35 | } |
||
36 | |||
37 | 3 | return __DIR__ . '/../../stubs/transition.stub'; |
|
38 | } |
||
39 | |||
66 |