mirror of
https://github.com/quentin-g-dev/afup.git
synced 2026-03-25 17:52:13 +01:00
60 lines
1.0 KiB
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;
|
|
}
|
|
}
|