%PDF- %PDF-
Direktori : /var/www/html/bbw/farmaci/kritik-portale/module/Basis/src/Basis/Model/ |
Current File : /var/www/html/bbw/farmaci/kritik-portale/module/Basis/src/Basis/Model/EventBasis.php |
<?php namespace Basis\Model; abstract class EventBasis { protected $_events = array(); protected function setEvent($event) { $this->_events[] = $event; } protected function addEvent($event) { $this->setEvent($event); } public function getEvents() { return $this->_events; } public function setEvents(array $events) { $this->_events = $events; } }