<?php
require_once 'MatchHistory.php';
class Player {
// declare class member variables
var $name;
var $matchHistory;
// constructor
function Player($name, $gamesPlayed, $goalsScored) {
$this->name = $name;
$this->matchHistory = new MatchHistory($gamesPlayed, $goalsScored);
}
function getName() {
return $this->name;
}
function getMatchHistory() {
return $this->matchHistory;
}
}
?>