diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Recipient/MembershipRelationInterface.php (renamed from src/Recipient/MembershipRelation.php) | 2 | ||||
-rw-r--r-- | src/Recipient/ProcessedContact.php | 4 | ||||
-rw-r--r-- | src/Recipient/ProcessedGroup.php | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/Recipient/MembershipRelation.php b/src/Recipient/MembershipRelationInterface.php index 945ca2e..bb159c2 100644 --- a/src/Recipient/MembershipRelation.php +++ b/src/Recipient/MembershipRelationInterface.php @@ -19,7 +19,7 @@ use IP1\RESTClient\Core\ClassValidationArray; * @link http://api.ip1sms.com/Help/Api/GET-api-memberships * @package \IP1\RESTClient\Recipient */ -interface MembershipRelation +interface MembershipRelationInterface { /** * Returns an array of all the memberships diff --git a/src/Recipient/ProcessedContact.php b/src/Recipient/ProcessedContact.php index 7a32670..87a637f 100644 --- a/src/Recipient/ProcessedContact.php +++ b/src/Recipient/ProcessedContact.php @@ -14,14 +14,14 @@ namespace IP1\RESTClient\Recipient; use IP1\RESTClient\Core\UpdatableComponentInterface; use IP1\RESTClient\Recipient\Membership; use IP1\RESTClient\Recipient\RecipientFactory; -use IP1\RESTClient\Recipient\MembershipRelation; +use IP1\RESTClient\Recipient\MembershipRelationInterface; use IP1\RESTClient\Core\Communicator; use IP1\RESTClient\Core\ClassValidationArray; /** * A Contact that has been added to the API. Has all the options that a normal Contact has. */ -class ProcessedContact extends Contact implements UpdatableComponentInterface, MembershipRelation +class ProcessedContact extends Contact implements UpdatableComponentInterface, MembershipRelationInterface { /** * The ID of the Contact given by the API. diff --git a/src/Recipient/ProcessedGroup.php b/src/Recipient/ProcessedGroup.php index ecd1dc6..eef4f79 100644 --- a/src/Recipient/ProcessedGroup.php +++ b/src/Recipient/ProcessedGroup.php @@ -19,7 +19,7 @@ use IP1\RESTClient\Recipient\ProcessedMembership; /** * */ -class ProcessedGroup extends Group implements UpdatableComponentInterface, MembershipRelation +class ProcessedGroup extends Group implements UpdatableComponentInterface, MembershipRelationInterface { /** * The ID of the Group given by the API. |