Пример #1
0
 /**
  * {@inheritDoc}
  */
 public function getId()
 {
     if ($this->__isInitialized__ === false) {
         return parent::getId();
     }
     $this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', array());
     return parent::getId();
 }
Пример #2
0
 /**
  * @covers Core\Entity\Rooms::setId
  * @covers Core\Entity\Rooms::getId
  */
 public function testSetGetId()
 {
     $this->room->setId(1);
     $this->assertEquals(1, $this->room->getId());
 }