<?php abstract class AbstractEvent { public function __construct($parEventType) { $this->eventType = $parEventType; } public function getEventType() { return $this->eventType; } } ?>