Files
afup/sources/AppBundle/Event/Model/TalkToSpeaker.php

60 lines
1.0 KiB
PHP

<?php
namespace AppBundle\Event\Model;
use CCMBenchmark\Ting\Entity\NotifyProperty;
use CCMBenchmark\Ting\Entity\NotifyPropertyInterface;
class TalkToSpeaker implements NotifyPropertyInterface
{
use NotifyProperty;
/**
* @var int
*/
private $talkId;
/**
* @var int
*/
private $speakerId;
/**
* @return int
*/
public function getTalkId()
{
return $this->talkId;
}
/**
* @param int $talkId
* @return TalkToSpeaker
*/
public function setTalkId($talkId)
{
$this->propertyChanged('talkId', $this->talkId, $talkId);
$this->talkId = $talkId;
return $this;
}
/**
* @return int
*/
public function getSpeakerId()
{
return $this->speakerId;
}
/**
* @param int $speakerId
* @return TalkToSpeaker
*/
public function setSpeakerId($speakerId)
{
$this->propertyChanged('speakerId', $this->speakerId, $speakerId);
$this->speakerId = $speakerId;
return $this;
}
}