Created
June 8, 2014 19:58
-
-
Save CodeDrivenMitch/aed72c92d375aec43679 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private function getObjectInfoByType($objectType) | |
{ | |
switch ($objectType) { | |
case "FoodStand": | |
return 'prices'; | |
break; | |
case "Toilet": | |
return 'prices'; | |
break; | |
case "MarketStall": | |
return 'prices'; | |
break; | |
default: | |
return 'none'; | |
break; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment