Property | Type | Description | |
---|---|---|---|
$domain | The domain name that the log operation pertains to. | ||
$error | The error/exception message if issues were encountered during the operation. | ||
$operation | The operation type. | ||
$start | The start of the operation. | ||
$stop | The end of the operation. |
Method | Description | |
---|---|---|
__construct ( LdapTools\Operation\LdapOperationInterface $operation ) | ||
getDomain ( ) : string | Get the domain that this log operation pertains to. | |
getError ( ) : null | string | The error/exception message if the operation encountered issues. | |
getOperation ( ) : LdapTools\Operation\LdapOperationInterface | Get the LDAP operation represented for this log. | |
getStartTime ( ) : integer | Get the time that the operation started. | |
getStopTime ( ) : integer | Get the time that the operation stopped. | |
setDomain ( string $domain ) | Set the domain name that this log operation pertains to. | |
setError ( string $error ) | Set the error/exception message if issues were encountered during the LDAP operation. | |
setOperation ( LdapTools\Operation\LdapOperationInterface $operation ) | Set the LDAP operation represented for this log. | |
start ( ) | Signifies that the operation has started. | |
stop ( ) | Signifies that the operation is over. |
public __construct ( LdapTools\Operation\LdapOperationInterface $operation ) | ||
$operation | LdapTools\Operation\LdapOperationInterface |
public getOperation ( ) : LdapTools\Operation\LdapOperationInterface | ||
return | LdapTools\Operation\LdapOperationInterface |
public getStartTime ( ) : integer | ||
return | integer |
public getStopTime ( ) : integer | ||
return | integer |
public setOperation ( LdapTools\Operation\LdapOperationInterface $operation ) | ||
$operation | LdapTools\Operation\LdapOperationInterface |
protected $error |