Skip to content

Instantly share code, notes, and snippets.

@camilopayan
Created January 9, 2017 04:00
Show Gist options
  • Save camilopayan/ea39cee734f2ccb241a415598993fce6 to your computer and use it in GitHub Desktop.
Save camilopayan/ea39cee734f2ccb241a415598993fce6 to your computer and use it in GitHub Desktop.
<?php
// The real class might look something like this.
class Animal
{
protected $sound;
public function __construct($sound)
{
$this->sound = $sound;
}
public function soundOff()
{
echo "$this->sound";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment