Skip to content

Instantly share code, notes, and snippets.

@havvg
Created September 18, 2016 13:59
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 havvg/7e3fc08ff28b9c491208487c4d144e99 to your computer and use it in GitHub Desktop.
Save havvg/7e3fc08ff28b9c491208487c4d144e99 to your computer and use it in GitHub Desktop.
<?php
class Person
{
private $firstName;
private $lastName;
public function name()
{
return $this->firstName.' '.$this->lastName;
}
public function rename(string $firstName, string $lastName)
{
// ..
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment