Conditions | 2 |
Paths | 2 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
30 | 16 | public function confirmed() |
|
31 | { |
||
32 | 16 | if (in_array($this->default, ["y", "yes"], true)) { |
|
33 | 4 | $this->prompt .= " [Y/n]"; |
|
34 | } else { |
||
35 | 12 | $this->prompt .= " [y/N]"; |
|
36 | } |
||
37 | |||
38 | 16 | $this->accept(['y', 'yes', 'n', 'no'], false); |
|
39 | |||
40 | 16 | $response = strtolower($this->prompt()); |
|
41 | |||
42 | 16 | return (substr($response, 0, 1) === 'y'); |
|
43 | } |
||
44 | } |
||
45 |