Skip to content

Instantly share code, notes, and snippets.

@joar
Created November 24, 2010 12:49
Show Gist options
  • Save joar/713599 to your computer and use it in GitHub Desktop.
Save joar/713599 to your computer and use it in GitHub Desktop.
Pizza order
<?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