Last active
July 3, 2020 18:55
-
-
Save eujoy/10b21950968a22a0859c1ff6527d71cf 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
<?php | |
namespace \Example\MyClass; | |
class User { | |
/** @var int $id */ | |
public $id; | |
/** @var string $first_name */ | |
public $first_name; | |
/** @var string $last_name */ | |
public $last_name; | |
/** @var string $username */ | |
public $username; | |
/** @var string $password */ | |
public $password; | |
private $is_active; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment