[Fix] Facade: Added facade to package

This commit is contained in:
Rakhal Imming
2016-05-19 10:45:22 +02:00
parent b045ad8062
commit 83fefc2180

16
src/Facades/Cart.php Normal file
View File

@@ -0,0 +1,16 @@
<?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';
}
}