Skip to content

Instantly share code, notes, and snippets.

@cyrilletuzi
Created January 28, 2017 21:52
Embed
What would you like to do?
<?php
class Editor extends User {
public function __construct($firstName) {
parent::__construct($firstName);
}
public function sayHello() {
parent::sayHello();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment