Skip to content

Commit

Permalink
Enhancement: Add email to @author tags (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
OskarStark authored Aug 29, 2024
1 parent f53db0d commit 9951285
Show file tree
Hide file tree
Showing 87 changed files with 87 additions and 87 deletions.
2 changes: 1 addition & 1 deletion examples/CompleteNotificationExample.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
use Serhiy\Pushover\Recipient;

/**
* @author Serhiy Lunak
* @author Serhiy Lunak <[email protected]>
*/
final class CompleteNotificationExample
{
Expand Down
2 changes: 1 addition & 1 deletion examples/EmergencyNotificationExample.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
use Serhiy\Pushover\Recipient;

/**
* @author Serhiy Lunak
* @author Serhiy Lunak <[email protected]>
*/
final class EmergencyNotificationExample
{
Expand Down
2 changes: 1 addition & 1 deletion examples/GlancesExample.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
use Serhiy\Pushover\Recipient;

/**
* @author Serhiy Lunak
* @author Serhiy Lunak <[email protected]>
*/
final class GlancesExample
{
Expand Down
2 changes: 1 addition & 1 deletion examples/GroupsExample.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
/**
* Working with groups.
*
* @author Serhiy Lunak
* @author Serhiy Lunak <[email protected]>
*/
final class GroupsExample
{
Expand Down
2 changes: 1 addition & 1 deletion examples/HtmlNotificationExample.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
use Serhiy\Pushover\Recipient;

/**
* @author Serhiy Lunak
* @author Serhiy Lunak <[email protected]>
*/
final class HtmlNotificationExample
{
Expand Down
2 changes: 1 addition & 1 deletion examples/LicensingExample.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
use Serhiy\Pushover\Recipient;

/**
* @author Serhiy Lunak
* @author Serhiy Lunak <[email protected]>
*/
final class LicensingExample
{
Expand Down
2 changes: 1 addition & 1 deletion examples/ReceiptExample.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
use Serhiy\Pushover\Recipient;

/**
* @author Serhiy Lunak
* @author Serhiy Lunak <[email protected]>
*/
final class ReceiptExample
{
Expand Down
2 changes: 1 addition & 1 deletion examples/ResponseExample.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
/**
* Response object example.
*
* @author Serhiy Lunak
* @author Serhiy Lunak <[email protected]>
*/
final class ResponseExample
{
Expand Down
2 changes: 1 addition & 1 deletion examples/SimpleNotificationExample.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
use Serhiy\Pushover\Recipient;

/**
* @author Serhiy Lunak
* @author Serhiy Lunak <[email protected]>
*/
final class SimpleNotificationExample
{
Expand Down
2 changes: 1 addition & 1 deletion examples/SubscriptionExample.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
use Serhiy\Pushover\Recipient;

/**
* @author Serhiy Lunak
* @author Serhiy Lunak <[email protected]>
*/
final class SubscriptionExample
{
Expand Down
2 changes: 1 addition & 1 deletion examples/UserGroupValidationExample.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
use Serhiy\Pushover\Recipient;

/**
* @author Serhiy Lunak
* @author Serhiy Lunak <[email protected]>
*/
final class UserGroupValidationExample
{
Expand Down
2 changes: 1 addition & 1 deletion src/Api/Glances/Glance.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>
*/
class Glance
{
Expand Down
2 changes: 1 addition & 1 deletion src/Api/Glances/GlanceDataFields.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,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 <[email protected]>
*/
class GlanceDataFields
{
Expand Down
2 changes: 1 addition & 1 deletion src/Api/Groups/Group.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
* notification group, or syncing with an external directory system, our Groups
* API is available.
*
* @author Serhiy Lunak
* @author Serhiy Lunak <[email protected]>
*/
class Group
{
Expand Down
2 changes: 1 addition & 1 deletion src/Api/Licensing/License.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
use Serhiy\Pushover\Recipient;

/**
* @author Serhiy Lunak
* @author Serhiy Lunak <[email protected]>
*/
class License
{
Expand Down
2 changes: 1 addition & 1 deletion src/Api/Message/Attachment.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>
*/
class Attachment
{
Expand Down
2 changes: 1 addition & 1 deletion src/Api/Message/CustomSound.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
use Serhiy\Pushover\Exception\InvalidArgumentException;

/**
* @author Serhiy Lunak
* @author Serhiy Lunak <[email protected]>
*/
class CustomSound
{
Expand Down
2 changes: 1 addition & 1 deletion src/Api/Message/Message.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,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 <[email protected]>
*/
class Message
{
Expand Down
2 changes: 1 addition & 1 deletion src/Api/Message/Notification.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
/**
* Notification consists of Application, Recipient and Message.
*
* @author Serhiy Lunak
* @author Serhiy Lunak <[email protected]>
*/
class Notification
{
Expand Down
2 changes: 1 addition & 1 deletion src/Api/Message/Priority.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,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 <[email protected]>
*/
class Priority
{
Expand Down
2 changes: 1 addition & 1 deletion src/Api/Message/Sound.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
use Serhiy\Pushover\Exception\InvalidArgumentException;

/**
* @author Serhiy Lunak
* @author Serhiy Lunak <[email protected]>
*/
class Sound
{
Expand Down
2 changes: 1 addition & 1 deletion src/Api/Receipts/Receipt.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>
*/
class Receipt
{
Expand Down
2 changes: 1 addition & 1 deletion src/Api/Subscription/Subscription.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
use Serhiy\Pushover\Recipient;

/**
* @author Serhiy Lunak
* @author Serhiy Lunak <[email protected]>
*/
readonly class Subscription
{
Expand Down
2 changes: 1 addition & 1 deletion src/Api/UserGroupValidation/Validation.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>
*/
class Validation
{
Expand Down
2 changes: 1 addition & 1 deletion src/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* To get started pushing notifications from your application, 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 <[email protected]>
*/
class Application
{
Expand Down
2 changes: 1 addition & 1 deletion src/Client/AssignLicenseClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
use Serhiy\Pushover\Exception\LogicException;

/**
* @author Serhiy Lunak
* @author Serhiy Lunak <[email protected]>
*/
class AssignLicenseClient extends Client implements ClientInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Client/CancelRetryClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
use Serhiy\Pushover\Client\Curl\Curl;

/**
* @author Serhiy Lunak
* @author Serhiy Lunak <[email protected]>
*/
class CancelRetryClient extends Client implements ClientInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Client/CheckLicenseClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
use Serhiy\Pushover\Client\Curl\Curl;

/**
* @author Serhiy Lunak
* @author Serhiy Lunak <[email protected]>
*/
class CheckLicenseClient extends Client implements ClientInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Client/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* Base class for the API client.
*
* @author Serhiy Lunak
* @author Serhiy Lunak <[email protected]>
*/
class Client
{
Expand Down
2 changes: 1 addition & 1 deletion src/Client/ClientInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
namespace Serhiy\Pushover\Client;

/**
* @author Serhiy Lunak
* @author Serhiy Lunak <[email protected]>
*/
interface ClientInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Client/Curl/Curl.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
/**
* Contains API related constants and performs curl request.
*
* @author Serhiy Lunak
* @author Serhiy Lunak <[email protected]>
*/
class Curl
{
Expand Down
2 changes: 1 addition & 1 deletion src/Client/GlancesClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
use Serhiy\Pushover\Exception\LogicException;

/**
* @author Serhiy Lunak
* @author Serhiy Lunak <[email protected]>
*/
class GlancesClient extends Client implements ClientInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Client/GroupsClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
use Serhiy\Pushover\Recipient;

/**
* @author Serhiy Lunak
* @author Serhiy Lunak <[email protected]>
*/
class GroupsClient extends Client implements ClientInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Client/MessageClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
/**
* Pushover HTTP Client for Message Component.
*
* @author Serhiy Lunak
* @author Serhiy Lunak <[email protected]>
*/
class MessageClient extends Client implements ClientInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Client/Request/Request.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* Holds curl and other request data.
*
* @author Serhiy Lunak
* @author Serhiy Lunak <[email protected]>
*/
class Request implements RequestInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Client/Request/RequestInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
namespace Serhiy\Pushover\Client\Request;

/**
* @author Serhiy Lunak
* @author Serhiy Lunak <[email protected]>
*/
interface RequestInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Client/Response/AddUserToGroupResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
use Serhiy\Pushover\Client\Response\Base\Response;

/**
* @author Serhiy Lunak
* @author Serhiy Lunak <[email protected]>
*/
class AddUserToGroupResponse extends Response
{
Expand Down
2 changes: 1 addition & 1 deletion src/Client/Response/Base/Response.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>
*/
class Response
{
Expand Down
2 changes: 1 addition & 1 deletion src/Client/Response/CancelRetryResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
use Serhiy\Pushover\Client\Response\Base\Response;

/**
* @author Serhiy Lunak
* @author Serhiy Lunak <[email protected]>
*/
class CancelRetryResponse extends Response
{
Expand Down
2 changes: 1 addition & 1 deletion src/Client/Response/CreateGroupResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
use Serhiy\Pushover\Client\Response\Base\Response;

/**
* @author Serhiy Lunak
* @author Serhiy Lunak <[email protected]>
*/
class CreateGroupResponse extends Response
{
Expand Down
2 changes: 1 addition & 1 deletion src/Client/Response/DisableUserInGroupResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
use Serhiy\Pushover\Client\Response\Base\Response;

/**
* @author Serhiy Lunak
* @author Serhiy Lunak <[email protected]>
*/
class DisableUserInGroupResponse extends Response
{
Expand Down
2 changes: 1 addition & 1 deletion src/Client/Response/EnableUserInGroupResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
use Serhiy\Pushover\Client\Response\Base\Response;

/**
* @author Serhiy Lunak
* @author Serhiy Lunak <[email protected]>
*/
class EnableUserInGroupResponse extends Response
{
Expand Down
2 changes: 1 addition & 1 deletion src/Client/Response/GlancesResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
use Serhiy\Pushover\Client\Response\Base\Response;

/**
* @author Serhiy Lunak
* @author Serhiy Lunak <[email protected]>
*/
class GlancesResponse extends Response
{
Expand Down
2 changes: 1 addition & 1 deletion src/Client/Response/LicenseResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
use Serhiy\Pushover\Client\Response\Base\Response;

/**
* @author Serhiy Lunak
* @author Serhiy Lunak <[email protected]>
*/
class LicenseResponse extends Response
{
Expand Down
Loading

0 comments on commit 9951285

Please sign in to comment.