Storm\Core\Object\IProperty::GetIdentifier PHP Метод

GetIdentifier() публичный Метод

The value identifier for the property.
public GetIdentifier ( ) : string
Результат string
    public function GetIdentifier();

Usage Example

Пример #1
0
 /**
  * @depends testAddedValuesAreSet
  */
 public function testCorrectPropertiesAreReturned()
 {
     $this->PropertyData[$this->Property1] = true;
     $this->PropertyData[$this->Property2] = true;
     $this->assertEquals($this->PropertyData->GetProperty($this->Property1->GetIdentifier()), $this->Property1);
     $this->assertEquals($this->PropertyData->GetProperty($this->Property2->GetIdentifier()), $this->Property2);
 }
All Usage Examples Of Storm\Core\Object\IProperty::GetIdentifier