¨4.0.1¨

This commit is contained in:
¨NW¨
2023-12-03 14:07:47 +00:00
parent c08b36d1b6
commit f35052522d
1112 changed files with 43019 additions and 24987 deletions

View File

@@ -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;
}
}