Skip to content

Instantly share code, notes, and snippets.

@vahid-almasi
Created December 21, 2018 02:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vahid-almasi/4bf0fdcbe3eefd6395dff702764a33c6 to your computer and use it in GitHub Desktop.
Save vahid-almasi/4bf0fdcbe3eefd6395dff702764a33c6 to your computer and use it in GitHub Desktop.
<?
$shapes = array(
new Circle(2),
new Square(5),
new Square(6)
);
$areas = new AreaCalculator($shapes);
$output = new SumCalculatorOutputter($areas);
echo $output->JSON();
echo $output->HAML();
echo $output->HTML();
echo $output->JADE();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment