Skip to content

Instantly share code, notes, and snippets.

@mcsee
Last active August 20, 2023 20:54
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 mcsee/9aea4a3d401b7e3c2e80101ff348dfa6 to your computer and use it in GitHub Desktop.
Save mcsee/9aea4a3d401b7e3c2e80101ff348dfa6 to your computer and use it in GitHub Desktop.
<?
class School {
private $name;
private $location;
function description() {
return $this->name . ' of ' . $this->location->name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment