Skip to content

Instantly share code, notes, and snippets.

@eujoy
Last active July 3, 2020 18:55
Show Gist options
  • Save eujoy/10b21950968a22a0859c1ff6527d71cf to your computer and use it in GitHub Desktop.
Save eujoy/10b21950968a22a0859c1ff6527d71cf to your computer and use it in GitHub Desktop.
<?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