Created
December 24, 2020 14:40
-
-
Save karakanb/4d7748139bc961007cc2dab705bea005 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Person { | |
public function __construct( | |
private string $firstName, | |
private string $lastName, | |
protected int $age, | |
public ?string $job | |
){} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment