LdapTools\Log\LogOperation::getDomain PHP Method

getDomain() public method

Get the domain that this log operation pertains to.
public getDomain ( ) : string
return string
    public function getDomain()
    {
        return $this->domain;
    }

Usage Example

 /**
  * {@inheritdoc}
  */
 public function start(LogOperation $operation)
 {
     if (!isset($this->opsByDomain[$operation->getDomain()])) {
         $this->opsByDomain[$operation->getDomain()] = [];
     }
     $this->opsByDomain[$operation->getDomain()][] = $operation;
     $this->allOperations[] = $operation;
 }
All Usage Examples Of LdapTools\Log\LogOperation::getDomain