Skip to content

Commit

Permalink
fix merge
Browse files Browse the repository at this point in the history
  • Loading branch information
lekoala committed Nov 12, 2024
1 parent b6cbc77 commit e74072e
Show file tree
Hide file tree
Showing 16 changed files with 31 additions and 154 deletions.
155 changes: 31 additions & 124 deletions src/thirdparty/Mandrill/Exceptions.php
Original file line number Diff line number Diff line change
@@ -1,244 +1,151 @@
<?php
// @codingStandardsIgnoreStart
class Mandrill_Error extends Exception
{
class Mandrill_Error extends Exception {}

}

class Mandrill_HttpError extends Mandrill_Error
{

}
class Mandrill_HttpError extends Mandrill_Error {}

/**
* The parameters passed to the API call are invalid or not provided when required
*/
class Mandrill_ValidationError extends Mandrill_Error
{

}
class Mandrill_ValidationError extends Mandrill_Error {}

/**
* The provided API key is not a valid Mandrill API key
*/
class Mandrill_Invalid_Key extends Mandrill_Error
{

}
class Mandrill_Invalid_Key extends Mandrill_Error {}

/**
* The requested feature requires payment.
*/
class Mandrill_PaymentRequired extends Mandrill_Error
{

}
class Mandrill_PaymentRequired extends Mandrill_Error {}

/**
* The provided subaccount id does not exist.
*/
class Mandrill_Unknown_Subaccount extends Mandrill_Error
{

}
class Mandrill_Unknown_Subaccount extends Mandrill_Error {}

/**
* The requested template does not exist
*/
class Mandrill_Unknown_Template extends Mandrill_Error
{

}
class Mandrill_Unknown_Template extends Mandrill_Error {}

/**
* The subsystem providing this API call is down for maintenance
*/
class Mandrill_ServiceUnavailable extends Mandrill_Error
{

}
class Mandrill_ServiceUnavailable extends Mandrill_Error {}

/**
* The provided message id does not exist.
*/
class Mandrill_Unknown_Message extends Mandrill_Error
{

}
class Mandrill_Unknown_Message extends Mandrill_Error {}

/**
* The requested tag does not exist or contains invalid characters
*/
class Mandrill_Invalid_Tag_Name extends Mandrill_Error
{

}
class Mandrill_Invalid_Tag_Name extends Mandrill_Error {}

/**
* The requested email is not in the rejection list
*/
class Mandrill_Invalid_Reject extends Mandrill_Error
{

}
class Mandrill_Invalid_Reject extends Mandrill_Error {}

/**
* The requested sender does not exist
*/
class Mandrill_Unknown_Sender extends Mandrill_Error
{

}
class Mandrill_Unknown_Sender extends Mandrill_Error {}

/**
* The requested URL has not been seen in a tracked link
*/
class Mandrill_Unknown_Url extends Mandrill_Error
{

}
class Mandrill_Unknown_Url extends Mandrill_Error {}

/**
* The provided tracking domain does not exist.
*/
class Mandrill_Unknown_TrackingDomain extends Mandrill_Error
{

}
class Mandrill_Unknown_TrackingDomain extends Mandrill_Error {}

/**
* The given template name already exists or contains invalid characters
*/
class Mandrill_Invalid_Template extends Mandrill_Error
{

}
class Mandrill_Invalid_Template extends Mandrill_Error {}

/**
* The requested webhook does not exist
*/
class Mandrill_Unknown_Webhook extends Mandrill_Error
{

}
class Mandrill_Unknown_Webhook extends Mandrill_Error {}

/**
* The requested inbound domain does not exist
*/
class Mandrill_Unknown_InboundDomain extends Mandrill_Error
{

}
class Mandrill_Unknown_InboundDomain extends Mandrill_Error {}

/**
* The provided inbound route does not exist.
*/
class Mandrill_Unknown_InboundRoute extends Mandrill_Error
{

}
class Mandrill_Unknown_InboundRoute extends Mandrill_Error {}

/**
* The requested export job does not exist
*/
class Mandrill_Unknown_Export extends Mandrill_Error
{

}
class Mandrill_Unknown_Export extends Mandrill_Error {}

/**
* A dedicated IP cannot be provisioned while another request is pending.
*/
class Mandrill_IP_ProvisionLimit extends Mandrill_Error
{

}
class Mandrill_IP_ProvisionLimit extends Mandrill_Error {}

/**
* The provided dedicated IP pool does not exist.
*/
class Mandrill_Unknown_Pool extends Mandrill_Error
{

}
class Mandrill_Unknown_Pool extends Mandrill_Error {}

/**
* The user hasn't started sending yet.
*/
class Mandrill_NoSendingHistory extends Mandrill_Error
{

}
class Mandrill_NoSendingHistory extends Mandrill_Error {}

/**
* The user's reputation is too low to continue.
*/
class Mandrill_PoorReputation extends Mandrill_Error
{

}
class Mandrill_PoorReputation extends Mandrill_Error {}

/**
* The provided dedicated IP does not exist.
*/
class Mandrill_Unknown_IP extends Mandrill_Error
{

}
class Mandrill_Unknown_IP extends Mandrill_Error {}

/**
* You cannot remove the last IP from your default IP pool.
*/
class Mandrill_Invalid_EmptyDefaultPool extends Mandrill_Error
{

}
class Mandrill_Invalid_EmptyDefaultPool extends Mandrill_Error {}

/**
* The default pool cannot be deleted.
*/
class Mandrill_Invalid_DeleteDefaultPool extends Mandrill_Error
{

}
class Mandrill_Invalid_DeleteDefaultPool extends Mandrill_Error {}

/**
* Non-empty pools cannot be deleted.
*/
class Mandrill_Invalid_DeleteNonEmptyPool extends Mandrill_Error
{

}
class Mandrill_Invalid_DeleteNonEmptyPool extends Mandrill_Error {}

/**
* The domain name is not configured for use as the dedicated IP's custom reverse DNS.
*/
class Mandrill_Invalid_CustomDNS extends Mandrill_Error
{

}
class Mandrill_Invalid_CustomDNS extends Mandrill_Error {}

/**
* A custom DNS change for this dedicated IP is currently pending.
*/
class Mandrill_Invalid_CustomDNSPending extends Mandrill_Error
{

}
class Mandrill_Invalid_CustomDNSPending extends Mandrill_Error {}

/**
* Custom metadata field limit reached.
*/
class Mandrill_Metadata_FieldLimit extends Mandrill_Error
{

}
class Mandrill_Metadata_FieldLimit extends Mandrill_Error {}

/**
* The provided metadata field name does not exist.
*/
class Mandrill_Unknown_MetadataField extends Mandrill_Error
{

}
class Mandrill_Unknown_MetadataField extends Mandrill_Error {}
// @codingStandardsIgnoreEnd
2 changes: 0 additions & 2 deletions src/thirdparty/Mandrill/Exports.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

class Mandrill_Exports
{
protected $master;

private $master;

public function __construct(Mandrill $master)
Expand Down
2 changes: 0 additions & 2 deletions src/thirdparty/Mandrill/Inbound.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

class Mandrill_Inbound
{
protected $master;

private $master;

public function __construct(Mandrill $master)
Expand Down
2 changes: 0 additions & 2 deletions src/thirdparty/Mandrill/Internal.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

class Mandrill_Internal
{
protected $master;

private $master;

public function __construct(Mandrill $master)
Expand Down
2 changes: 0 additions & 2 deletions src/thirdparty/Mandrill/Ips.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

class Mandrill_Ips
{
protected $master;

private $master;

public function __construct(Mandrill $master)
Expand Down
2 changes: 0 additions & 2 deletions src/thirdparty/Mandrill/Messages.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

class Mandrill_Messages
{
protected $master;

private $master;

public function __construct(Mandrill $master)
Expand Down
2 changes: 0 additions & 2 deletions src/thirdparty/Mandrill/Metadata.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

class Mandrill_Metadata
{
protected $master;

private $master;

public function __construct(Mandrill $master)
Expand Down
2 changes: 0 additions & 2 deletions src/thirdparty/Mandrill/Rejects.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

class Mandrill_Rejects
{
protected $master;

private $master;

public function __construct(Mandrill $master)
Expand Down
2 changes: 0 additions & 2 deletions src/thirdparty/Mandrill/Senders.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

class Mandrill_Senders
{
protected $master;

private $master;

public function __construct(Mandrill $master)
Expand Down
2 changes: 0 additions & 2 deletions src/thirdparty/Mandrill/Subaccounts.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

class Mandrill_Subaccounts
{
protected $master;

private $master;

public function __construct(Mandrill $master)
Expand Down
2 changes: 0 additions & 2 deletions src/thirdparty/Mandrill/Tags.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

class Mandrill_Tags
{
protected $master;

private $master;

public function __construct(Mandrill $master)
Expand Down
2 changes: 0 additions & 2 deletions src/thirdparty/Mandrill/Templates.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

class Mandrill_Templates
{
protected $master;

private $master;

public function __construct(Mandrill $master)
Expand Down
2 changes: 0 additions & 2 deletions src/thirdparty/Mandrill/Urls.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

class Mandrill_Urls
{
protected $master;

private $master;

public function __construct(Mandrill $master)
Expand Down
2 changes: 0 additions & 2 deletions src/thirdparty/Mandrill/Users.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

class Mandrill_Users
{
protected $master;

private $master;

public function __construct(Mandrill $master)
Expand Down
Loading

0 comments on commit e74072e

Please sign in to comment.