Skip to content

Instantly share code, notes, and snippets.

@tsh-code
Created December 4, 2019 08:05
Show Gist options
  • Save tsh-code/5e8c45ff5182e0096b0441e97e8c0b06 to your computer and use it in GitHub Desktop.
Save tsh-code/5e8c45ff5182e0096b0441e97e8c0b06 to your computer and use it in GitHub Desktop.
class Person
{
public string $name;
public ?string $surname;
public function __construct(string $name, ?string $surname) {
$this->name = $name;
$this->surname = $surname;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment