Adldap\Schemas\SchemaInterface::objectGuid PHP 메소드

objectGuid() 공개 메소드

The unique identifier for an object.
public objectGuid ( ) : string
리턴 string
    public function objectGuid();

Usage Example

예제 #1
0
파일: Model.php 프로젝트: adldap2/adldap2
 /**
  * Convert the object into something JSON serializable.
  *
  * @return array
  */
 public function jsonSerialize()
 {
     // We need to remove the object SID and GUID from
     // being serialized as these attributes contain
     // characters that cannot be serialized.
     return Arr::except($this->getAttributes(), [$this->schema->objectSid(), $this->schema->objectGuid()]);
 }
SchemaInterface