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':
|
case 'scissors':
|
||||||
$humanChoiceItem = new Scissors();
|
$humanChoiceItem = new Scissors();
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
exit('Invalid choice!');
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -44,6 +49,10 @@ switch ($computerChoice)
|
||||||
|
|
||||||
case 'scissors':
|
case 'scissors':
|
||||||
$computerChoiceItem = new Scissors();
|
$computerChoiceItem = new Scissors();
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
exit('Internal error: Invalid computer choice.');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue