diff --git a/Example/CompleteNotificationExample.php b/Example/CompleteNotificationExample.php index 8eb22db..7a06f4a 100644 --- a/Example/CompleteNotificationExample.php +++ b/Example/CompleteNotificationExample.php @@ -24,7 +24,7 @@ /** * Complete Notification Example. * - * @author Serhiy Lunak + * @author Serhiy Lunak */ class CompleteNotificationExample { diff --git a/Example/EmergencyNotificationExample.php b/Example/EmergencyNotificationExample.php index 808185c..8fc1083 100644 --- a/Example/EmergencyNotificationExample.php +++ b/Example/EmergencyNotificationExample.php @@ -21,7 +21,7 @@ /** * Emergency Notification Example. * - * @author Serhiy Lunak + * @author Serhiy Lunak */ class EmergencyNotificationExample { diff --git a/Example/GlancesExample.php b/Example/GlancesExample.php index 156b804..de30285 100644 --- a/Example/GlancesExample.php +++ b/Example/GlancesExample.php @@ -18,7 +18,7 @@ use Serhiy\Pushover\Recipient; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class GlancesExample { diff --git a/Example/GroupsExample.php b/Example/GroupsExample.php index ae50497..735eba8 100644 --- a/Example/GroupsExample.php +++ b/Example/GroupsExample.php @@ -24,7 +24,7 @@ /** * Work with groups example. * - * @author Serhiy Lunak + * @author Serhiy Lunak */ class GroupsExample { diff --git a/Example/HtmlNotificationExample.php b/Example/HtmlNotificationExample.php index 31d1d18..a74f5a2 100644 --- a/Example/HtmlNotificationExample.php +++ b/Example/HtmlNotificationExample.php @@ -20,7 +20,7 @@ /** * HTML Notification Example. * - * @author Serhiy Lunak + * @author Serhiy Lunak */ class HtmlNotificationExample { diff --git a/Example/LicensingExample.php b/Example/LicensingExample.php index a0ee3ba..38053e4 100644 --- a/Example/LicensingExample.php +++ b/Example/LicensingExample.php @@ -17,7 +17,7 @@ use Serhiy\Pushover\Recipient; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class LicensingExample { diff --git a/Example/ReceiptExample.php b/Example/ReceiptExample.php index c26c2f1..a08a848 100644 --- a/Example/ReceiptExample.php +++ b/Example/ReceiptExample.php @@ -19,7 +19,7 @@ use Serhiy\Pushover\Recipient; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class ReceiptExample { diff --git a/Example/ResponseExample.php b/Example/ResponseExample.php index 7f797db..d5a7530 100644 --- a/Example/ResponseExample.php +++ b/Example/ResponseExample.php @@ -21,7 +21,7 @@ /** * Response Object Example. * - * @author Serhiy Lunak + * @author Serhiy Lunak */ class ResponseExample { diff --git a/Example/SimpleNotificationExample.php b/Example/SimpleNotificationExample.php index 110d1a5..b042349 100644 --- a/Example/SimpleNotificationExample.php +++ b/Example/SimpleNotificationExample.php @@ -20,7 +20,7 @@ /** * Simple Notification Example. * - * @author Serhiy Lunak + * @author Serhiy Lunak */ class SimpleNotificationExample { diff --git a/Example/SubscriptionExample.php b/Example/SubscriptionExample.php index b25d184..6d16889 100644 --- a/Example/SubscriptionExample.php +++ b/Example/SubscriptionExample.php @@ -18,7 +18,7 @@ use Serhiy\Pushover\Recipient; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class SubscriptionExample { diff --git a/Example/UserGroupValidationExample.php b/Example/UserGroupValidationExample.php index 31ec367..380b4b5 100644 --- a/Example/UserGroupValidationExample.php +++ b/Example/UserGroupValidationExample.php @@ -19,7 +19,7 @@ /** * Validation Example. * - * @author Serhiy Lunak + * @author Serhiy Lunak */ class UserGroupValidationExample { diff --git a/src/Api/Glances/Glance.php b/src/Api/Glances/Glance.php index 235d58b..f162c1c 100644 --- a/src/Api/Glances/Glance.php +++ b/src/Api/Glances/Glance.php @@ -29,7 +29,7 @@ * These pieces of data should be low-priority since they often cannot get updated in real-time or very frequently, * and they must be concise because they are often viewed on small screens such as a watch face. * - * @author Serhiy Lunak + * @author Serhiy Lunak */ class Glance { diff --git a/src/Api/Glances/GlanceDataFields.php b/src/Api/Glances/GlanceDataFields.php index 931063d..5458e7c 100644 --- a/src/Api/Glances/GlanceDataFields.php +++ b/src/Api/Glances/GlanceDataFields.php @@ -22,7 +22,7 @@ * For example, each watch face on the Apple Watch uses a different sized complication, * with different size specifications and types of data. Some are text strings, some are just numbers. * - * @author Serhiy Lunak + * @author Serhiy Lunak */ class GlanceDataFields { diff --git a/src/Api/Groups/Group.php b/src/Api/Groups/Group.php index e87c6c0..24f7ced 100644 --- a/src/Api/Groups/Group.php +++ b/src/Api/Groups/Group.php @@ -39,7 +39,7 @@ * notification group, or syncing with an external directory system, our Groups * API is available. * - * @author Serhiy Lunak + * @author Serhiy Lunak */ class Group { diff --git a/src/Api/Licensing/License.php b/src/Api/Licensing/License.php index 7d505c1..e094efd 100644 --- a/src/Api/Licensing/License.php +++ b/src/Api/Licensing/License.php @@ -23,7 +23,7 @@ use Serhiy\Pushover\Recipient; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class License { diff --git a/src/Api/Message/Attachment.php b/src/Api/Message/Attachment.php index ee32249..6fccf6a 100644 --- a/src/Api/Message/Attachment.php +++ b/src/Api/Message/Attachment.php @@ -22,7 +22,7 @@ * Note that, like messages, once attachments are downloaded by the device, they are deleted from our servers and only stored on the device going forward. * Attachments uploaded for devices that are not running at least version 3.0 of our apps will be discarded as they cannot be displayed by those devices. * - * @author Serhiy Lunak + * @author Serhiy Lunak */ class Attachment { diff --git a/src/Api/Message/CustomSound.php b/src/Api/Message/CustomSound.php index 0bb9ea0..c7614dd 100644 --- a/src/Api/Message/CustomSound.php +++ b/src/Api/Message/CustomSound.php @@ -16,7 +16,7 @@ use Serhiy\Pushover\Exception\InvalidArgumentException; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class CustomSound { diff --git a/src/Api/Message/Message.php b/src/Api/Message/Message.php index 0592bb4..384673c 100644 --- a/src/Api/Message/Message.php +++ b/src/Api/Message/Message.php @@ -22,7 +22,7 @@ * If the title is not specified, the application's name will be shown by default. * See {@link https://pushover.net/api#messages} for more information. * - * @author Serhiy Lunak + * @author Serhiy Lunak */ class Message { diff --git a/src/Api/Message/Notification.php b/src/Api/Message/Notification.php index 3da521d..62c6923 100644 --- a/src/Api/Message/Notification.php +++ b/src/Api/Message/Notification.php @@ -23,7 +23,7 @@ /** * Notification consists of Application, Recipient and Message. * - * @author Serhiy Lunak + * @author Serhiy Lunak */ class Notification { diff --git a/src/Api/Message/Priority.php b/src/Api/Message/Priority.php index f7a1aa4..c417ebb 100644 --- a/src/Api/Message/Priority.php +++ b/src/Api/Message/Priority.php @@ -24,7 +24,7 @@ * Specifying a message priority does not affect queueing or routing priority and only affects how device clients display them. * See {@link https://pushover.net/api#priority} for more information. * - * @author Serhiy Lunak + * @author Serhiy Lunak */ class Priority { diff --git a/src/Api/Message/Sound.php b/src/Api/Message/Sound.php index 31ef90d..d56b340 100644 --- a/src/Api/Message/Sound.php +++ b/src/Api/Message/Sound.php @@ -16,7 +16,7 @@ use Serhiy\Pushover\Exception\InvalidArgumentException; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class Sound { diff --git a/src/Api/Receipts/Receipt.php b/src/Api/Receipts/Receipt.php index f9338e5..5edaca8 100644 --- a/src/Api/Receipts/Receipt.php +++ b/src/Api/Receipts/Receipt.php @@ -26,7 +26,7 @@ * This receipt can be used to periodically poll our receipts API to get the status of your notification, * up to 1 week after your notification has been received. * - * @author Serhiy Lunak + * @author Serhiy Lunak */ class Receipt { diff --git a/src/Api/Subscription/Subscription.php b/src/Api/Subscription/Subscription.php index 11b8b66..a2db4c7 100644 --- a/src/Api/Subscription/Subscription.php +++ b/src/Api/Subscription/Subscription.php @@ -22,7 +22,7 @@ use Serhiy\Pushover\Recipient; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class Subscription { diff --git a/src/Api/UserGroupValidation/Validation.php b/src/Api/UserGroupValidation/Validation.php index 20ee433..65d5bb1 100644 --- a/src/Api/UserGroupValidation/Validation.php +++ b/src/Api/UserGroupValidation/Validation.php @@ -24,7 +24,7 @@ * As an optional step in collecting user keys for users of your application, you may validate those keys to ensure that * a user has copied them properly,that the account is valid, and that there is at least one active device on the account. * - * @author Serhiy Lunak + * @author Serhiy Lunak */ class Validation { diff --git a/src/Application.php b/src/Application.php index 038d515..b98be1c 100644 --- a/src/Application.php +++ b/src/Application.php @@ -21,7 +21,7 @@ * you'll first need to register it to get an API token. * See {@link https://pushover.net/api#registration} for more information. * - * @author Serhiy Lunak + * @author Serhiy Lunak */ class Application { diff --git a/src/Client/AssignLicenseClient.php b/src/Client/AssignLicenseClient.php index 178c524..83571db 100644 --- a/src/Client/AssignLicenseClient.php +++ b/src/Client/AssignLicenseClient.php @@ -18,7 +18,7 @@ use Serhiy\Pushover\Exception\LogicException; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class AssignLicenseClient extends Client implements ClientInterface { diff --git a/src/Client/CancelRetryClient.php b/src/Client/CancelRetryClient.php index 5376af0..2da4fec 100644 --- a/src/Client/CancelRetryClient.php +++ b/src/Client/CancelRetryClient.php @@ -17,7 +17,7 @@ use Serhiy\Pushover\Client\Curl\Curl; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class CancelRetryClient extends Client implements ClientInterface { diff --git a/src/Client/CheckLicenseClient.php b/src/Client/CheckLicenseClient.php index 7f7079c..2e3d279 100644 --- a/src/Client/CheckLicenseClient.php +++ b/src/Client/CheckLicenseClient.php @@ -17,7 +17,7 @@ use Serhiy\Pushover\Client\Curl\Curl; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class CheckLicenseClient extends Client implements ClientInterface { diff --git a/src/Client/Client.php b/src/Client/Client.php index 8875697..1dc5979 100644 --- a/src/Client/Client.php +++ b/src/Client/Client.php @@ -16,7 +16,7 @@ /** * Base class for the API client. * - * @author Serhiy Lunak + * @author Serhiy Lunak */ class Client { diff --git a/src/Client/ClientInterface.php b/src/Client/ClientInterface.php index 4d52497..f0b4e37 100644 --- a/src/Client/ClientInterface.php +++ b/src/Client/ClientInterface.php @@ -14,7 +14,7 @@ namespace Serhiy\Pushover\Client; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ interface ClientInterface { diff --git a/src/Client/Curl/Curl.php b/src/Client/Curl/Curl.php index 3e3ea7d..de89c60 100644 --- a/src/Client/Curl/Curl.php +++ b/src/Client/Curl/Curl.php @@ -19,7 +19,7 @@ /** * Contains API related constants and performs curl request. * - * @author Serhiy Lunak + * @author Serhiy Lunak */ class Curl { diff --git a/src/Client/GlancesClient.php b/src/Client/GlancesClient.php index d4123fe..3a607ec 100644 --- a/src/Client/GlancesClient.php +++ b/src/Client/GlancesClient.php @@ -18,7 +18,7 @@ use Serhiy\Pushover\Exception\LogicException; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class GlancesClient extends Client implements ClientInterface { diff --git a/src/Client/GroupsClient.php b/src/Client/GroupsClient.php index 469f77d..fc8b79d 100644 --- a/src/Client/GroupsClient.php +++ b/src/Client/GroupsClient.php @@ -19,7 +19,7 @@ use Serhiy\Pushover\Recipient; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class GroupsClient extends Client implements ClientInterface { diff --git a/src/Client/MessageClient.php b/src/Client/MessageClient.php index 51b798a..7316c0f 100644 --- a/src/Client/MessageClient.php +++ b/src/Client/MessageClient.php @@ -21,7 +21,7 @@ /** * Pushover HTTP Client for Message Component. * - * @author Serhiy Lunak + * @author Serhiy Lunak */ class MessageClient extends Client implements ClientInterface { diff --git a/src/Client/Request/Request.php b/src/Client/Request/Request.php index 282329f..02bbce7 100644 --- a/src/Client/Request/Request.php +++ b/src/Client/Request/Request.php @@ -16,7 +16,7 @@ /** * Holds curl and other request data. * - * @author Serhiy Lunak + * @author Serhiy Lunak */ class Request implements RequestInterface { diff --git a/src/Client/Request/RequestInterface.php b/src/Client/Request/RequestInterface.php index 6336c66..0aa8713 100644 --- a/src/Client/Request/RequestInterface.php +++ b/src/Client/Request/RequestInterface.php @@ -14,7 +14,7 @@ namespace Serhiy\Pushover\Client\Request; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ interface RequestInterface { diff --git a/src/Client/Response/AddUserToGroupResponse.php b/src/Client/Response/AddUserToGroupResponse.php index 7611b74..4284fb6 100644 --- a/src/Client/Response/AddUserToGroupResponse.php +++ b/src/Client/Response/AddUserToGroupResponse.php @@ -16,7 +16,7 @@ use Serhiy\Pushover\Client\Response\Base\Response; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class AddUserToGroupResponse extends Response { diff --git a/src/Client/Response/Base/Response.php b/src/Client/Response/Base/Response.php index d97f07d..3ebabf1 100644 --- a/src/Client/Response/Base/Response.php +++ b/src/Client/Response/Base/Response.php @@ -22,7 +22,7 @@ * with a JSON object containing a status code of 1. If any input was invalid, you will receive an HTTP 4xx status, * with a JSON object containing a status code of something other than 1, and an errors array detailing which parameters were invalid. * - * @author Serhiy Lunak + * @author Serhiy Lunak */ class Response { diff --git a/src/Client/Response/CancelRetryResponse.php b/src/Client/Response/CancelRetryResponse.php index bdfdc32..bd3e60f 100644 --- a/src/Client/Response/CancelRetryResponse.php +++ b/src/Client/Response/CancelRetryResponse.php @@ -16,7 +16,7 @@ use Serhiy\Pushover\Client\Response\Base\Response; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class CancelRetryResponse extends Response { diff --git a/src/Client/Response/CreateGroupResponse.php b/src/Client/Response/CreateGroupResponse.php index caf1358..e47e419 100644 --- a/src/Client/Response/CreateGroupResponse.php +++ b/src/Client/Response/CreateGroupResponse.php @@ -16,7 +16,7 @@ use Serhiy\Pushover\Client\Response\Base\Response; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class CreateGroupResponse extends Response { diff --git a/src/Client/Response/DisableUserInGroupResponse.php b/src/Client/Response/DisableUserInGroupResponse.php index eb025eb..b66494f 100644 --- a/src/Client/Response/DisableUserInGroupResponse.php +++ b/src/Client/Response/DisableUserInGroupResponse.php @@ -16,7 +16,7 @@ use Serhiy\Pushover\Client\Response\Base\Response; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class DisableUserInGroupResponse extends Response { diff --git a/src/Client/Response/EnableUserInGroupResponse.php b/src/Client/Response/EnableUserInGroupResponse.php index ea5a9a0..0d98b97 100644 --- a/src/Client/Response/EnableUserInGroupResponse.php +++ b/src/Client/Response/EnableUserInGroupResponse.php @@ -16,7 +16,7 @@ use Serhiy\Pushover\Client\Response\Base\Response; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class EnableUserInGroupResponse extends Response { diff --git a/src/Client/Response/GlancesResponse.php b/src/Client/Response/GlancesResponse.php index 9ad5532..d72ebb8 100644 --- a/src/Client/Response/GlancesResponse.php +++ b/src/Client/Response/GlancesResponse.php @@ -16,7 +16,7 @@ use Serhiy\Pushover\Client\Response\Base\Response; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class GlancesResponse extends Response { diff --git a/src/Client/Response/LicenseResponse.php b/src/Client/Response/LicenseResponse.php index 113672e..825d308 100644 --- a/src/Client/Response/LicenseResponse.php +++ b/src/Client/Response/LicenseResponse.php @@ -16,7 +16,7 @@ use Serhiy\Pushover\Client\Response\Base\Response; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class LicenseResponse extends Response { diff --git a/src/Client/Response/MessageResponse.php b/src/Client/Response/MessageResponse.php index 7fbdace..4ab63c4 100644 --- a/src/Client/Response/MessageResponse.php +++ b/src/Client/Response/MessageResponse.php @@ -16,7 +16,7 @@ use Serhiy\Pushover\Client\Response\Base\Response; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class MessageResponse extends Response { diff --git a/src/Client/Response/ReceiptResponse.php b/src/Client/Response/ReceiptResponse.php index 82bbf85..556677d 100644 --- a/src/Client/Response/ReceiptResponse.php +++ b/src/Client/Response/ReceiptResponse.php @@ -17,7 +17,7 @@ use Serhiy\Pushover\Recipient; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class ReceiptResponse extends Response { diff --git a/src/Client/Response/RemoveUserFromGroupResponse.php b/src/Client/Response/RemoveUserFromGroupResponse.php index d697b2a..a6fc603 100644 --- a/src/Client/Response/RemoveUserFromGroupResponse.php +++ b/src/Client/Response/RemoveUserFromGroupResponse.php @@ -16,7 +16,7 @@ use Serhiy\Pushover\Client\Response\Base\Response; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class RemoveUserFromGroupResponse extends Response { diff --git a/src/Client/Response/RenameGroupResponse.php b/src/Client/Response/RenameGroupResponse.php index 728ffbe..8d4babf 100644 --- a/src/Client/Response/RenameGroupResponse.php +++ b/src/Client/Response/RenameGroupResponse.php @@ -16,7 +16,7 @@ use Serhiy\Pushover\Client\Response\Base\Response; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class RenameGroupResponse extends Response { diff --git a/src/Client/Response/RetrieveGroupResponse.php b/src/Client/Response/RetrieveGroupResponse.php index ba04c77..9b51645 100644 --- a/src/Client/Response/RetrieveGroupResponse.php +++ b/src/Client/Response/RetrieveGroupResponse.php @@ -19,7 +19,7 @@ /** * @phpstan-type GroupUser object{user: string, device: null|string, memo: string, disabled: bool} * - * @author Serhiy Lunak + * @author Serhiy Lunak */ class RetrieveGroupResponse extends Response { diff --git a/src/Client/Response/SubscriptionResponse.php b/src/Client/Response/SubscriptionResponse.php index e0d02fb..9cec1cd 100644 --- a/src/Client/Response/SubscriptionResponse.php +++ b/src/Client/Response/SubscriptionResponse.php @@ -16,7 +16,7 @@ use Serhiy\Pushover\Client\Response\Base\Response; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class SubscriptionResponse extends Response { diff --git a/src/Client/Response/UserGroupValidationResponse.php b/src/Client/Response/UserGroupValidationResponse.php index 2d99f87..682a7b3 100644 --- a/src/Client/Response/UserGroupValidationResponse.php +++ b/src/Client/Response/UserGroupValidationResponse.php @@ -16,7 +16,7 @@ use Serhiy\Pushover\Client\Response\Base\Response; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class UserGroupValidationResponse extends Response { diff --git a/src/Client/SubscriptionClient.php b/src/Client/SubscriptionClient.php index 7e03e5b..dd66071 100644 --- a/src/Client/SubscriptionClient.php +++ b/src/Client/SubscriptionClient.php @@ -20,7 +20,7 @@ use Serhiy\Pushover\Recipient; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class SubscriptionClient extends Client implements ClientInterface { diff --git a/src/Exception/ExceptionInterface.php b/src/Exception/ExceptionInterface.php index 89b1120..78d9dde 100644 --- a/src/Exception/ExceptionInterface.php +++ b/src/Exception/ExceptionInterface.php @@ -16,7 +16,7 @@ /** * Base ExceptionInterface for the Pushover component. * - * @author Serhiy Lunak + * @author Serhiy Lunak */ interface ExceptionInterface extends \Throwable { diff --git a/src/Exception/InvalidArgumentException.php b/src/Exception/InvalidArgumentException.php index 3a0f14d..3144e08 100644 --- a/src/Exception/InvalidArgumentException.php +++ b/src/Exception/InvalidArgumentException.php @@ -16,7 +16,7 @@ /** * Base InvalidArgumentException for the Pushover component. * - * @author Serhiy Lunak + * @author Serhiy Lunak */ class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface { diff --git a/src/Exception/LogicException.php b/src/Exception/LogicException.php index e6925c8..9516faa 100644 --- a/src/Exception/LogicException.php +++ b/src/Exception/LogicException.php @@ -16,7 +16,7 @@ /** * Base LogicException for the Pushover component. * - * @author Serhiy Lunak + * @author Serhiy Lunak */ class LogicException extends \LogicException implements ExceptionInterface { diff --git a/src/Recipient.php b/src/Recipient.php index 6b7f533..80074b4 100644 --- a/src/Recipient.php +++ b/src/Recipient.php @@ -22,7 +22,7 @@ * Instead of a user key, a user may supply a group key. When sending notifications to a group key, * all active users listed in the group will have the notification delivered to them and the response will look the same. * - * @author Serhiy Lunak + * @author Serhiy Lunak */ class Recipient { diff --git a/tests/Api/Glances/GlanceDataFieldsTest.php b/tests/Api/Glances/GlanceDataFieldsTest.php index 234b81a..620ea3f 100644 --- a/tests/Api/Glances/GlanceDataFieldsTest.php +++ b/tests/Api/Glances/GlanceDataFieldsTest.php @@ -18,7 +18,7 @@ use Serhiy\Pushover\Exception\InvalidArgumentException; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class GlanceDataFieldsTest extends TestCase { diff --git a/tests/Api/Glances/GlanceTest.php b/tests/Api/Glances/GlanceTest.php index ac6cc9b..e4eed40 100644 --- a/tests/Api/Glances/GlanceTest.php +++ b/tests/Api/Glances/GlanceTest.php @@ -21,7 +21,7 @@ use Serhiy\Pushover\Recipient; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class GlanceTest extends TestCase { diff --git a/tests/Api/Groups/GroupTest.php b/tests/Api/Groups/GroupTest.php index b61fdbb..19fd301 100644 --- a/tests/Api/Groups/GroupTest.php +++ b/tests/Api/Groups/GroupTest.php @@ -21,7 +21,7 @@ use Serhiy\Pushover\Client\Response\RetrieveGroupResponse; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class GroupTest extends TestCase { diff --git a/tests/Api/Message/AttachmentTest.php b/tests/Api/Message/AttachmentTest.php index 05398ea..ce2f110 100644 --- a/tests/Api/Message/AttachmentTest.php +++ b/tests/Api/Message/AttachmentTest.php @@ -18,7 +18,7 @@ use Serhiy\Pushover\Exception\InvalidArgumentException; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class AttachmentTest extends TestCase { diff --git a/tests/Api/Message/CustomSoundTest.php b/tests/Api/Message/CustomSoundTest.php index 0c62ce0..1acada7 100644 --- a/tests/Api/Message/CustomSoundTest.php +++ b/tests/Api/Message/CustomSoundTest.php @@ -18,7 +18,7 @@ use Serhiy\Pushover\Exception\InvalidArgumentException; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class CustomSoundTest extends TestCase { diff --git a/tests/Api/Message/NotificationTest.php b/tests/Api/Message/NotificationTest.php index 91f619a..b090963 100644 --- a/tests/Api/Message/NotificationTest.php +++ b/tests/Api/Message/NotificationTest.php @@ -24,7 +24,7 @@ use Serhiy\Pushover\Recipient; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class NotificationTest extends TestCase { diff --git a/tests/Api/Message/PriorityTest.php b/tests/Api/Message/PriorityTest.php index 8bea0fb..57390fa 100644 --- a/tests/Api/Message/PriorityTest.php +++ b/tests/Api/Message/PriorityTest.php @@ -19,7 +19,7 @@ use Serhiy\Pushover\Exception\LogicException; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class PriorityTest extends TestCase { diff --git a/tests/Api/Message/SoundTest.php b/tests/Api/Message/SoundTest.php index 004e8e1..8380e34 100644 --- a/tests/Api/Message/SoundTest.php +++ b/tests/Api/Message/SoundTest.php @@ -18,7 +18,7 @@ use Serhiy\Pushover\Exception\InvalidArgumentException; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class SoundTest extends TestCase { diff --git a/tests/Api/Receipts/ReceiptTest.php b/tests/Api/Receipts/ReceiptTest.php index 8ce710c..6cf60a8 100644 --- a/tests/Api/Receipts/ReceiptTest.php +++ b/tests/Api/Receipts/ReceiptTest.php @@ -20,7 +20,7 @@ use Serhiy\Pushover\Client\Response\ReceiptResponse; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class ReceiptTest extends TestCase { diff --git a/tests/Api/Subscription/SubscriptionTest.php b/tests/Api/Subscription/SubscriptionTest.php index 2a8aa93..d19875b 100644 --- a/tests/Api/Subscription/SubscriptionTest.php +++ b/tests/Api/Subscription/SubscriptionTest.php @@ -20,7 +20,7 @@ use Serhiy\Pushover\Recipient; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class SubscriptionTest extends TestCase { diff --git a/tests/Api/UserGroupValidation/ValidationTest.php b/tests/Api/UserGroupValidation/ValidationTest.php index b42b3f5..2548b15 100644 --- a/tests/Api/UserGroupValidation/ValidationTest.php +++ b/tests/Api/UserGroupValidation/ValidationTest.php @@ -20,7 +20,7 @@ use Serhiy\Pushover\Recipient; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class ValidationTest extends TestCase { diff --git a/tests/Client/CancelRetryClientTest.php b/tests/Client/CancelRetryClientTest.php index abce2d4..0bf9f1a 100644 --- a/tests/Client/CancelRetryClientTest.php +++ b/tests/Client/CancelRetryClientTest.php @@ -19,7 +19,7 @@ use Serhiy\Pushover\Client\CancelRetryClient; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class CancelRetryClientTest extends TestCase { diff --git a/tests/Client/GroupsClientTest.php b/tests/Client/GroupsClientTest.php index b5e23c0..90e61d3 100644 --- a/tests/Client/GroupsClientTest.php +++ b/tests/Client/GroupsClientTest.php @@ -20,7 +20,7 @@ use Serhiy\Pushover\Recipient; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class GroupsClientTest extends TestCase { diff --git a/tests/Client/MessageClientTest.php b/tests/Client/MessageClientTest.php index efbb5c1..05a2d75 100644 --- a/tests/Client/MessageClientTest.php +++ b/tests/Client/MessageClientTest.php @@ -23,7 +23,7 @@ use Serhiy\Pushover\Recipient; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class MessageClientTest extends TestCase { diff --git a/tests/Client/ReceiptClientTest.php b/tests/Client/ReceiptClientTest.php index 94f43d4..96f2593 100644 --- a/tests/Client/ReceiptClientTest.php +++ b/tests/Client/ReceiptClientTest.php @@ -18,7 +18,7 @@ use Serhiy\Pushover\Client\ReceiptClient; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class ReceiptClientTest extends TestCase { diff --git a/tests/Client/Request/RequestTest.php b/tests/Client/Request/RequestTest.php index 7ec244d..6de4436 100644 --- a/tests/Client/Request/RequestTest.php +++ b/tests/Client/Request/RequestTest.php @@ -17,7 +17,7 @@ use Serhiy\Pushover\Client\Request\Request; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class RequestTest extends TestCase { diff --git a/tests/Client/Response/AddUserToGroupResponseTest.php b/tests/Client/Response/AddUserToGroupResponseTest.php index a0b9e47..aa603b0 100644 --- a/tests/Client/Response/AddUserToGroupResponseTest.php +++ b/tests/Client/Response/AddUserToGroupResponseTest.php @@ -17,7 +17,7 @@ use Serhiy\Pushover\Client\Response\AddUserToGroupResponse; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class AddUserToGroupResponseTest extends TestCase { diff --git a/tests/Client/Response/CancelRetryResponseTest.php b/tests/Client/Response/CancelRetryResponseTest.php index af179d7..e7420be 100644 --- a/tests/Client/Response/CancelRetryResponseTest.php +++ b/tests/Client/Response/CancelRetryResponseTest.php @@ -17,7 +17,7 @@ use Serhiy\Pushover\Client\Response\CancelRetryResponse; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class CancelRetryResponseTest extends TestCase { diff --git a/tests/Client/Response/DisableUserInGroupResponseTest.php b/tests/Client/Response/DisableUserInGroupResponseTest.php index 1b94900..df286ab 100644 --- a/tests/Client/Response/DisableUserInGroupResponseTest.php +++ b/tests/Client/Response/DisableUserInGroupResponseTest.php @@ -17,7 +17,7 @@ use Serhiy\Pushover\Client\Response\DisableUserInGroupResponse; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class DisableUserInGroupResponseTest extends TestCase { diff --git a/tests/Client/Response/EnableUserInGroupResponseTest.php b/tests/Client/Response/EnableUserInGroupResponseTest.php index 7665b9c..428af7b 100644 --- a/tests/Client/Response/EnableUserInGroupResponseTest.php +++ b/tests/Client/Response/EnableUserInGroupResponseTest.php @@ -17,7 +17,7 @@ use Serhiy\Pushover\Client\Response\EnableUserInGroupResponse; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class EnableUserInGroupResponseTest extends TestCase { diff --git a/tests/Client/Response/LicenseResponseTest.php b/tests/Client/Response/LicenseResponseTest.php index 59fa28e..fdce5a2 100644 --- a/tests/Client/Response/LicenseResponseTest.php +++ b/tests/Client/Response/LicenseResponseTest.php @@ -17,7 +17,7 @@ use Serhiy\Pushover\Client\Response\LicenseResponse; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class LicenseResponseTest extends TestCase { diff --git a/tests/Client/Response/MessageResponseTest.php b/tests/Client/Response/MessageResponseTest.php index 18513e2..e51f192 100644 --- a/tests/Client/Response/MessageResponseTest.php +++ b/tests/Client/Response/MessageResponseTest.php @@ -17,7 +17,7 @@ use Serhiy\Pushover\Client\Response\MessageResponse; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class MessageResponseTest extends TestCase { diff --git a/tests/Client/Response/ReceiptResponseTest.php b/tests/Client/Response/ReceiptResponseTest.php index 46f3b93..dd29d19 100644 --- a/tests/Client/Response/ReceiptResponseTest.php +++ b/tests/Client/Response/ReceiptResponseTest.php @@ -18,7 +18,7 @@ use Serhiy\Pushover\Recipient; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class ReceiptResponseTest extends TestCase { diff --git a/tests/Client/Response/RemoveUserFromGroupResponseTest.php b/tests/Client/Response/RemoveUserFromGroupResponseTest.php index e9c2ad6..f99a2c4 100644 --- a/tests/Client/Response/RemoveUserFromGroupResponseTest.php +++ b/tests/Client/Response/RemoveUserFromGroupResponseTest.php @@ -17,7 +17,7 @@ use Serhiy\Pushover\Client\Response\RemoveUserFromGroupResponse; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class RemoveUserFromGroupResponseTest extends TestCase { diff --git a/tests/Client/Response/RenameGroupResponseTest.php b/tests/Client/Response/RenameGroupResponseTest.php index 28f5c73..d2270c3 100644 --- a/tests/Client/Response/RenameGroupResponseTest.php +++ b/tests/Client/Response/RenameGroupResponseTest.php @@ -17,7 +17,7 @@ use Serhiy\Pushover\Client\Response\RenameGroupResponse; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class RenameGroupResponseTest extends TestCase { diff --git a/tests/Client/Response/SubscriptionResponseTest.php b/tests/Client/Response/SubscriptionResponseTest.php index 73de33f..5faffaf 100644 --- a/tests/Client/Response/SubscriptionResponseTest.php +++ b/tests/Client/Response/SubscriptionResponseTest.php @@ -17,7 +17,7 @@ use Serhiy\Pushover\Client\Response\SubscriptionResponse; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class SubscriptionResponseTest extends TestCase { diff --git a/tests/Client/Response/UserGroupValidationResponseTest.php b/tests/Client/Response/UserGroupValidationResponseTest.php index a73d0b4..08220fd 100644 --- a/tests/Client/Response/UserGroupValidationResponseTest.php +++ b/tests/Client/Response/UserGroupValidationResponseTest.php @@ -17,7 +17,7 @@ use Serhiy\Pushover\Client\Response\UserGroupValidationResponse; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class UserGroupValidationResponseTest extends TestCase { diff --git a/tests/Client/SubscriptionClientTest.php b/tests/Client/SubscriptionClientTest.php index 7a442de..add2e13 100644 --- a/tests/Client/SubscriptionClientTest.php +++ b/tests/Client/SubscriptionClientTest.php @@ -21,7 +21,7 @@ use Serhiy\Pushover\Recipient; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class SubscriptionClientTest extends TestCase { diff --git a/tests/Client/UserGroupValidationClientTest.php b/tests/Client/UserGroupValidationClientTest.php index dac9669..adfb19d 100644 --- a/tests/Client/UserGroupValidationClientTest.php +++ b/tests/Client/UserGroupValidationClientTest.php @@ -19,7 +19,7 @@ use Serhiy\Pushover\Recipient; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class UserGroupValidationClientTest extends TestCase { diff --git a/tests/RecipientTest.php b/tests/RecipientTest.php index 28a32ce..34a978c 100644 --- a/tests/RecipientTest.php +++ b/tests/RecipientTest.php @@ -16,7 +16,7 @@ use Serhiy\Pushover\Recipient; /** - * @author Serhiy Lunak + * @author Serhiy Lunak */ class RecipientTest extends TestCase {