¨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,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;
}
}