Storm\Drivers\Base\Object\Properties\Accessors\Accessor::UpdateIdentifer PHP Method

UpdateIdentifer() private method

private UpdateIdentifer ( $Force = false )
    private function UpdateIdentifer($Force = false)
    {
        if (!$Force && $this->GlobalIdentifier !== null) {
            return;
        }
        $this->GetterIdentifier = '';
        $this->GetterIdentifier($this->GetterIdentifier);
        $this->SetterIdentifier = '';
        $this->SetterIdentifier($this->SetterIdentifier);
        $this->GlobalIdentifier = md5(($this->EntityType ? $this->EntityType : '') . $this->GetterIdentifier . $this->SetterIdentifier);
    }