Skip to content

Commit

Permalink
[fix] fix phpdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
aryala7 committed Apr 8, 2024
1 parent 95e5068 commit d782458
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/Listeners/StoreSmsMessage.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

class StoreSmsMessage
{
public function handle(SmsSent $event)
public function handle(SmsSent $event): void
{

$response = $event->response;
Expand Down
6 changes: 6 additions & 0 deletions src/Models/SmsMessage.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@
use Illuminate\Database\Eloquent\Model;
use TookanTech\Chapaar\Enums\Drivers;

/**
* @property Drivers $driver
* @property AsCollection $data
* @property-write int $status
*
*/
class SmsMessage extends Model
{
protected $fillable = [
Expand Down

0 comments on commit d782458

Please sign in to comment.