Skip to content

Instantly share code, notes, and snippets.

@camilopayan
Created January 9, 2017 04:04
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 camilopayan/833f9042ca55f7b30871a088d01b43c2 to your computer and use it in GitHub Desktop.
Save camilopayan/833f9042ca55f7b30871a088d01b43c2 to your computer and use it in GitHub Desktop.
<?php
class AnimalParade
{
public march()
{
$animals = [ $this->getMonkey(), $this->getDog(), $this->getLion() ];
foreach($animals as $animal)
{
$animal->soundOff()
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment