Пример #1
0
 /**
  * {@inheritDoc}
  */
 public function getContactLesson()
 {
     $this->__initializer__ && $this->__initializer__->__invoke($this, 'getContactLesson', array());
     return parent::getContactLesson();
 }
Пример #2
0
 /**
  * @covers Core\Entity\Rooms::setContactLesson
  * @covers Core\Entity\Rooms::getContactLesson
  */
 public function testSetGetContactLesson()
 {
     $ct = 'ContactLesson';
     $this->room->setContactLesson($ct);
     $this->assertEquals($ct, $this->room->getContactLesson());
 }