Skip to content

Instantly share code, notes, and snippets.

@pedrochaves
Created July 12, 2015 15:30
Show Gist options
  • Save pedrochaves/18e753030dbd772072a1 to your computer and use it in GitHub Desktop.
Save pedrochaves/18e753030dbd772072a1 to your computer and use it in GitHub Desktop.
Exemplo de traits
<?php
class Person
{
protected $name;
public function setName($name)
{
$this->name = ucwords($name);
}
public function getName()
{
return $this->name;
}
}
class PetOwner extends Person
{
}
class Veterinarian extends Person
{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment