Beispiel #1
0
 /**
  * {@inheritdoc}
  */
 public function setValue($value)
 {
     $this->assertAttributeIsSet();
     $property = $this->attribute->getStorageType();
     $this->{$property} = $value;
 }
 /**
  * {@inheritdoc}
  */
 public function setValue($value)
 {
     $this->assertAttributeIsSet();
     $setter = 'set' . $this->attribute->getStorageType();
     $this->{$setter}($value);
 }