Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- class SomeClass {
- public function selectBehaviour($input) {
- $output = null;
- switch ($input) {
- case 1:
- $output = 10;
- case 2:
- case 3:
- $output = 20;
- }
- return $output;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement