Skip to content

Instantly share code, notes, and snippets.

@manuelaplesa96
Last active May 23, 2024 06:17
Show Gist options
  • Save manuelaplesa96/0ae4d5f7202a07c7880f5893a1c07707 to your computer and use it in GitHub Desktop.
Save manuelaplesa96/0ae4d5f7202a07c7880f5893a1c07707 to your computer and use it in GitHub Desktop.
The gist that shows an example of Union Types in the PHP programming language.
class Example {
/**
* @var string $attribute
*/
private string $attribute1;
/**
* @var string|null $attribute2
*/
private ?string $attribute2;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment