Skip to content

Instantly share code, notes, and snippets.

@tonycaputome
Last active December 20, 2015 18:39
Show Gist options
  • Save tonycaputome/6177064 to your computer and use it in GitHub Desktop.
Save tonycaputome/6177064 to your computer and use it in GitHub Desktop.
<?php
class Person {
private $alive = true;
protected $gender = '';
protected $genitalOrgan = ''; }
class Man extends Person {
public function __construct(){
$this->gender = 'male';
$this->genitalOrgan = 'penis'; }
} ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment