Skip to content

Commit

Permalink
Use the correct constructor argument.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gareth Nicholson committed Feb 12, 2021
1 parent a5e57cd commit a4ccb89
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/ClickatellChannel.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

namespace IoDigital\Clickatell;

use Clickatell\Rest;
use Illuminate\Notifications\Notification;
use IoDigital\Clickatell\Exceptions\CouldNotSendNotification;

Expand All @@ -11,9 +12,9 @@ class ClickatellChannel
protected $clickatell;

/**
* @param ClickatellClient $clickatell
* @param Rest $clickatell
*/
public function __construct(ClickatellClient $clickatell)
public function __construct(Rest $clickatell)
{
$this->clickatell = $clickatell;
}
Expand Down

0 comments on commit a4ccb89

Please sign in to comment.