User.php 216 B

1234567891011121314151617181920
  1. <?php
  2. namespace Demo;
  3. class User {
  4. protected $id;
  5. public function __construct($id) {
  6. $this->id = (int) $id;
  7. }
  8. /**
  9. * @return int
  10. */
  11. public function getId(): int {
  12. return $this->id;
  13. }
  14. }