Conditions | 3 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 3 |
Changes | 3 | ||
Bugs | 0 | Features | 2 |
1 | <?php |
||
8 | 4 | public function execute(TransactionData $transactionData, $argument = null) |
|
9 | { |
||
10 | 4 | $argument = (integer) $argument; |
|
11 | 4 | if ($argument < 500 || $argument >= 600) { |
|
12 | 3 | $argument = 500; |
|
13 | 3 | } |
|
14 | 4 | return $transactionData->setResponse( |
|
15 | 4 | $transactionData->getResponse()->withStatus($argument) |
|
16 | 4 | ); |
|
17 | } |
||
18 | } |
||
19 |