Skip to content

Instantly share code, notes, and snippets.

@sadick254
Last active June 17, 2018 08:23
Show Gist options
  • Save sadick254/70b07e9e6205c29c6abcab16ccf36af8 to your computer and use it in GitHub Desktop.
Save sadick254/70b07e9e6205c29c6abcab16ccf36af8 to your computer and use it in GitHub Desktop.
<?php
class User {
private $name;
private $age;
public function setName(string $name) {
$this->name = $name;
}
public function setAge($age):void
{
$this->age = $age;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment