We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f025fbb commit a663564Copy full SHA for a663564
src/FreeDSx/Ldap/Operation/Request/SyncRequest.php
@@ -13,8 +13,6 @@ class SyncRequest extends SearchRequest
13
{
14
private ?Closure $syncIdSetHandler = null;
15
16
- private ?Closure $phaseChangeHandler = null;
17
-
18
public function __construct(
19
?FilterInterface $filter = null,
20
string|Attribute ...$attributes
@@ -36,16 +34,4 @@ public function getIdSetHandler(): ?Closure
36
34
37
35
return $this->syncIdSetHandler;
38
}
39
40
- public function usePhaseChangeHandler(?Closure $phaseChangeHandler): self
41
- {
42
- $this->phaseChangeHandler = $phaseChangeHandler;
43
44
- return $this;
45
- }
46
47
- public function getPhaseChangeHandler(): ?Closure
48
49
- return $this->phaseChangeHandler;
50
51
0 commit comments