Skip to content

Instantly share code, notes, and snippets.

@jinkrish
Created June 1, 2016 08:02
Show Gist options
  • Save jinkrish/460752d4430b0e35bee80c642e0f108d to your computer and use it in GitHub Desktop.
Save jinkrish/460752d4430b0e35bee80c642e0f108d to your computer and use it in GitHub Desktop.
<?php
class Author {
private $firstName;
private $lastName;
public function __construct($firstName, $lastName) {
$this->firstName = $firstName;
$this->lastName = $lastName;
}
public function getFirstName() {
return $this->firstName;
}
public function getLastName() {
return $this->lastName;
}
}
class Question {
private $author;
private $question;
public function __construct($question, Author $author) {
$this->author = $author;
$this->question = $question;
}
public function getAuthor() {
return $this->author;
}
public function getQuestion() {
return $this->question;
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment