Gc\Property\Model::getValueModel PHP Method

getValueModel() public method

Return property value model
public getValueModel ( ) : Model
return Gc\Property\Value\Model
    public function getValueModel()
    {
        if (empty($this->value)) {
            $this->loadValue();
        }
        return $this->value;
    }

Usage Example

Example #1
0
 /**
  * Test
  *
  * @return void
  */
 public function testGetValueModel()
 {
     $this->assertInstanceOf('Gc\\Property\\Value\\Model', $this->object->getValueModel());
 }
All Usage Examples Of Gc\Property\Model::getValueModel