Created
November 24, 2010 12:49
-
-
Save joar/713599 to your computer and use it in GitHub Desktop.
Pizza order
This file contains hidden or 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
<?php | |
# Create pizza | |
$pizza = new Pizza; | |
# Set ingredients | |
$pizza->setProperty('ingredients', array( | |
'curry', | |
'banan', | |
'fårost', | |
'oliver', | |
'bearnaisesås' | |
)); | |
# Makes SOAP call to nearest pizzeria with a good/bad review ratio over 0.6 | |
$pizza->order(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment