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 45cee24 commit 30e74efCopy full SHA for 30e74ef
src/Contracts/InteractsWithEndpoints.php
@@ -6,9 +6,12 @@
6
7
use AdroSoftware\UnbounceSdk\Endpoint\{
8
Accounts\Accounts,
9
+ Pages\Pages,
10
};
11
12
interface InteractsWithEndpoints
13
{
14
public function accounts(): Accounts;
15
+
16
+ public function pages(): Pages;
17
}
src/Unbounce.php
@@ -7,6 +7,7 @@
use AdroSoftware\UnbounceSdk\Contracts\InteractsWithEndpoints;
final class Unbounce extends AbstractClient implements InteractsWithEndpoints
@@ -22,4 +23,9 @@ public function accounts(): Accounts
22
23
24
return new Accounts($this);
25
26
27
+ public function pages(): Pages
28
+ {
29
+ return new Pages($this);
30
+ }
31
0 commit comments