We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 18463b6 + 65b5798 commit 19f1b18Copy full SHA for 19f1b18
src/Client.php
@@ -2,6 +2,7 @@
2
3
namespace Resend;
4
5
+use Resend\Contracts\Client as ClientContract;
6
use Resend\Contracts\Transporter;
7
use Resend\Service\ServiceFactory;
8
@@ -12,7 +13,7 @@
12
13
* @property \Resend\Service\Domain $domains
14
* @property \Resend\Service\Email $emails
15
*/
-class Client
16
+class Client implements ClientContract
17
{
18
/**
19
* The service factory instance.
src/Contracts/Client.php
@@ -0,0 +1,8 @@
1
+<?php
+
+namespace Resend\Contracts;
+interface Client
+{
+ //
+}
src/Contracts/Response.php
0 commit comments