Skip to content

Commit

Permalink
Update SmsmisrMessage.php
Browse files Browse the repository at this point in the history
  • Loading branch information
AbdullahGhanem authored Mar 27, 2020
1 parent 5fbaf8a commit 53ff5a6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/SmsmisrMessage.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class SmsmisrMessage
{
/** @var string $message */
protected $message;
/** @var string $from */
/** @var string $sender */
protected $sender;
/** @var string $to */
protected $to;
Expand Down Expand Up @@ -53,8 +53,8 @@ public function __get(string $name)
case 'to':
return $this->to;
break;
case 'from':
return $this->from;
case 'sender':
return $this->sender;
break;
default:
throw new \InvalidArgumentException();
Expand Down

0 comments on commit 53ff5a6

Please sign in to comment.