Skip to content

Commit 5970fe9

Browse files
committed
fix: Add optional handlers for Accounting, Domain, and RootServer
Introduced nullable properties for Accounting, Domain, and RootServer handlers in the Client class. These additions prepare the Client for expanded functionality and modular handling of related operations. No impact on existing behavior without explicit handler usage.
1 parent acab4e6 commit 5970fe9

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/Client.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ class Client
1616
private Credentials $credentials;
1717
private string $token;
1818

19+
private ?Accounting $accountingHandler = null;
20+
private ?Domain $domainHandler = null;
21+
private ?RootServer $rootServerHandler = null;
22+
1923
/**
2024
* Client constructor.
2125
*

0 commit comments

Comments
 (0)