LdapTools\Operation\LdapOperationTrait::addPostOperation PHP 메소드

addPostOperation() 공개 메소드

Add an operation that should be executed after this operation.
public addPostOperation ( variadic $operations )
$operations variadic
    public function addPostOperation(LdapOperationInterface ...$operations)
    {
        foreach ($operations as $operation) {
            $this->postOperations[] = $operation;
        }
        return $this;
    }