¨4.0.1¨
This commit is contained in:
@@ -2,19 +2,21 @@
|
||||
|
||||
namespace Modules\Shipping\Facades;
|
||||
|
||||
use Illuminate\Support\Collection;
|
||||
use Illuminate\Support\Facades\Facade;
|
||||
use Modules\Shipping\ShippingMethodManager;
|
||||
|
||||
/**
|
||||
* @method static \Illuminate\Support\Collection available()
|
||||
* @method static \Illuminate\Support\Collection all()
|
||||
* @method static Collection available()
|
||||
* @method static Collection all()
|
||||
* @method static array names()
|
||||
* @method static object get(string $name)
|
||||
* @method static \Modules\Shipping\ShippingMethodManager register(string $name, callable|object $driver)
|
||||
* @method static ShippingMethodManager register(string $name, callable|object $driver)
|
||||
* @method static int count()
|
||||
* @method static bool isEmpty()
|
||||
* @method static bool isNotEmpty()
|
||||
*
|
||||
* @see \Modules\Shipping\ShippingMethodManager
|
||||
* @see ShippingMethodManager
|
||||
*/
|
||||
class ShippingMethod extends Facade
|
||||
{
|
||||
@@ -23,8 +25,8 @@ class ShippingMethod extends Facade
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
protected static function getFacadeAccessor()
|
||||
protected static function getFacadeAccessor(): string
|
||||
{
|
||||
return \Modules\Shipping\ShippingMethodManager::class;
|
||||
return ShippingMethodManager::class;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user