Skip to content

Instantly share code, notes, and snippets.

@crevillo
Created April 13, 2019 18:12
Show Gist options
  • Save crevillo/498b37bcae0bcdc16384f4731f001a77 to your computer and use it in GitHub Desktop.
Save crevillo/498b37bcae0bcdc16384f4731f001a77 to your computer and use it in GitHub Desktop.
<?php
class Person
{
private $name;
public function getName()
{
return $this->name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment