¨4.0.1¨
This commit is contained in:
@@ -2,18 +2,21 @@
|
||||
|
||||
namespace Modules\Sms\Facades;
|
||||
|
||||
use Modules\Sms\GatewayManager;
|
||||
use Modules\Sms\GatewayInterface;
|
||||
use Illuminate\Support\Collection;
|
||||
use Illuminate\Support\Facades\Facade;
|
||||
|
||||
/**
|
||||
* @method static \Illuminate\Support\Collection all()
|
||||
* @method static Collection all()
|
||||
* @method static array names()
|
||||
* @method static \Modules\Sms\GatewayInterface get(string $name)
|
||||
* @method static \Modules\Sms\GatewayManager register(string $name, callable|object $driver)
|
||||
* @method static GatewayInterface get(string $name)
|
||||
* @method static GatewayManager register(string $name, callable|object $driver)
|
||||
* @method static int count()
|
||||
* @method static bool isEmpty()
|
||||
* @method static bool isNotEmpty()
|
||||
*
|
||||
* @see \Modules\Sms\GatewayManager
|
||||
* @see GatewayManager
|
||||
*/
|
||||
class Gateway extends Facade
|
||||
{
|
||||
@@ -24,6 +27,6 @@ class Gateway extends Facade
|
||||
*/
|
||||
protected static function getFacadeAccessor()
|
||||
{
|
||||
return \Modules\Sms\GatewayManager::class;
|
||||
return GatewayManager::class;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user