Files
LaravelShoppingcart/src/Facades/Cart.php
2019-01-14 18:05:10 +01:00

19 lines
300 B
PHP

<?php
namespace Gloudemans\Shoppingcart\Facades;
use Illuminate\Support\Facades\Facade;
class Cart extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'cart';
}
}