Initial commit

This commit is contained in:
Rob Gloudemans
2013-05-22 20:12:34 +02:00
commit fa7e90e48a
12 changed files with 517 additions and 0 deletions

View File

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