Skip to content

Commit

Permalink
Remove unnecessary qualifier
Browse files Browse the repository at this point in the history
  • Loading branch information
buttjer authored Aug 8, 2024
1 parent ad9ff3f commit dcc5539
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/ApnMessage.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

use DateTime;
use Pushok\Client;
use Pushok\Payload\Sound;

class ApnMessage
{
Expand Down Expand Up @@ -37,7 +38,7 @@ class ApnMessage
/**
* The sound of the notification.
*/
public null|string|\Pushok\Payload\Sound $sound = null;
public null|string|Sound $sound = null;

/**
* The interruption level of the notification.
Expand Down Expand Up @@ -199,7 +200,7 @@ public function badge(?int $badge): self
/**
* Set the sound of the notification.
*/
public function sound(null|string|\Pushok\Payload\Sound $sound = 'default'): self
public function sound(null|string|Sound $sound = 'default'): self
{
$this->sound = $sound;

Expand Down

0 comments on commit dcc5539

Please sign in to comment.