File tree 12 files changed +12
-12
lines changed
12 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 8
8
* @property string $created_at Time at which the API key was created.
9
9
* @property string|null $token The new API key to authenticate request with Resend.
10
10
*/
11
- final class ApiKey extends Resource
11
+ class ApiKey extends Resource
12
12
{
13
13
//
14
14
}
Original file line number Diff line number Diff line change 13
13
*
14
14
* @property TResource[] $data
15
15
*/
16
- final class Collection extends Resource implements IteratorAggregate
16
+ class Collection extends Resource implements IteratorAggregate
17
17
{
18
18
/**
19
19
* {@inheritdoc}
Original file line number Diff line number Diff line change 2
2
3
3
namespace Resend ;
4
4
5
- final class Domain extends Resource
5
+ class Domain extends Resource
6
6
{
7
7
//
8
8
}
Original file line number Diff line number Diff line change 8
8
* @property string $to The email recipient address.
9
9
* @property string $created_at Time at which the API key was created.
10
10
*/
11
- final class Email extends Resource
11
+ class Email extends Resource
12
12
{
13
13
//
14
14
}
Original file line number Diff line number Diff line change 4
4
5
5
use Exception ;
6
6
7
- final class ErrorException extends Exception
7
+ class ErrorException extends Exception
8
8
{
9
9
/**
10
10
* Creates a new Error Exception instance.
Original file line number Diff line number Diff line change 5
5
use Exception ;
6
6
use Psr \Http \Client \ClientExceptionInterface ;
7
7
8
- final class TransporterException extends Exception
8
+ class TransporterException extends Exception
9
9
{
10
10
/**
11
11
* Create a new Transporter exception.
Original file line number Diff line number Diff line change 5
5
use Exception ;
6
6
use JsonException ;
7
7
8
- final class UnserializableResponse extends Exception
8
+ class UnserializableResponse extends Exception
9
9
{
10
10
/**
11
11
* Create a new Unserializable Response exception.
Original file line number Diff line number Diff line change 7
7
use Resend \ValueObjects \Transporter \BaseUri ;
8
8
use Resend \ValueObjects \Transporter \Headers ;
9
9
10
- final class Resend
10
+ class Resend
11
11
{
12
12
/**
13
13
* Creates a new Resend Client with the given API key.
Original file line number Diff line number Diff line change 4
4
5
5
use Resend \ValueObjects \Transporter \Payload ;
6
6
7
- final class ApiKey extends Service
7
+ class ApiKey extends Service
8
8
{
9
9
/**
10
10
* Create a new API key.
Original file line number Diff line number Diff line change 4
4
5
5
use Resend \ValueObjects \Transporter \Payload ;
6
6
7
- final class Domain extends Service
7
+ class Domain extends Service
8
8
{
9
9
/**
10
10
* Add a new domain.
Original file line number Diff line number Diff line change 4
4
5
5
use Resend \ValueObjects \Transporter \Payload ;
6
6
7
- final class Email extends Service
7
+ class Email extends Service
8
8
{
9
9
/**
10
10
* Retrieve an email with the given ID.
Original file line number Diff line number Diff line change 4
4
5
5
use Resend \Contracts \Transporter ;
6
6
7
- final class ServiceFactory
7
+ class ServiceFactory
8
8
{
9
9
/**
10
10
* A list of service classes.
You can’t perform that action at this time.
0 commit comments