Missing break & default
This commit is contained in:
parent
ecc9ecbcce
commit
2ab84fafde
9
test.php
9
test.php
|
@ -28,6 +28,11 @@ switch ($humanChoice)
|
|||
|
||||
case 'scissors':
|
||||
$humanChoiceItem = new Scissors();
|
||||
break;
|
||||
|
||||
default:
|
||||
exit('Invalid choice!');
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
@ -44,6 +49,10 @@ switch ($computerChoice)
|
|||
|
||||
case 'scissors':
|
||||
$computerChoiceItem = new Scissors();
|
||||
break;
|
||||
|
||||
default:
|
||||
exit('Internal error: Invalid computer choice.');
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue