Skip to content

Commit

Permalink
Merge pull request #277 from gsteel/remove-internal-annotation
Browse files Browse the repository at this point in the history
Remove `@internal` annotations
  • Loading branch information
gsteel committed Aug 6, 2024
2 parents b2ccee8 + 2dd0e54 commit 2a85672
Show file tree
Hide file tree
Showing 10 changed files with 0 additions and 14 deletions.
1 change: 0 additions & 1 deletion src/Postmark/ClientBehaviour/Bounces.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

use function sprintf;

/** @internal \Postmark */
trait Bounces
{
/**
Expand Down
1 change: 0 additions & 1 deletion src/Postmark/ClientBehaviour/InboundMessages.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

use function sprintf;

/** @internal \Postmark */
trait InboundMessages
{
/**
Expand Down
1 change: 0 additions & 1 deletion src/Postmark/ClientBehaviour/MessageStreams.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

use function sprintf;

/** @internal \Postmark */
trait MessageStreams
{
/**
Expand Down
2 changes: 0 additions & 2 deletions src/Postmark/ClientBehaviour/OutboundMessages.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
use function sprintf;

/**
* @internal \Postmark
*
* @see PostmarkClient
*
* @psalm-import-type MetaData from PostmarkClient
Expand Down
1 change: 0 additions & 1 deletion src/Postmark/ClientBehaviour/PostmarkClientBase.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
use const PHP_QUERY_RFC3986;
use const PHP_RELEASE_VERSION;

/** @internal Postmark */
abstract class PostmarkClientBase
{
use Discovery;
Expand Down
1 change: 0 additions & 1 deletion src/Postmark/ClientBehaviour/Statistics.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

use function sprintf;

/** @internal \Postmark */
trait Statistics
{
/**
Expand Down
1 change: 0 additions & 1 deletion src/Postmark/ClientBehaviour/Suppressions.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

use function sprintf;

/** @internal \Postmark */
trait Suppressions
{
/**
Expand Down
2 changes: 0 additions & 2 deletions src/Postmark/ClientBehaviour/Templates.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@
use function sprintf;

/**
* @internal \Postmark
*
* @see PostmarkClient
*
* @psalm-import-type TemplateId from PostmarkClient
Expand Down
2 changes: 0 additions & 2 deletions src/Postmark/ClientBehaviour/Webhooks.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@
use function sprintf;

/**
* @internal \Postmark
*
* @see PostmarkClient
*
* @psalm-import-type HeaderList from PostmarkClient
Expand Down
2 changes: 0 additions & 2 deletions src/Postmark/Models/CaseInsensitiveArray.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@
* CaseInsensitiveArray allows accessing elements with mixed-case keys.
* This allows access to the array to be very forgiving. (i.e. If you access something
* with the wrong CaSe, it'll still find the correct element)
*
* @internal Postmark
*/
class CaseInsensitiveArray implements ArrayAccess, Iterator
{
Expand Down

0 comments on commit 2a85672

Please sign in to comment.