Skip to content

Commit

Permalink
add Facade
Browse files Browse the repository at this point in the history
  • Loading branch information
mdabagh committed May 9, 2023
1 parent b30f80d commit 4f6794a
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/Facades/Sms.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?php

namespace Mdabagh\Smschannels\Facades;

use Illuminate\Support\Facades\Facade;

class Sms extends Facade
{
protected static function getFacadeAccessor()
{
return 'SmsChannelsInterface';
}
}
?>

0 comments on commit 4f6794a

Please sign in to comment.