Overview

Namespaces

  • Composer
    • Autoload
  • Illuminate
    • Support
      • Contracts
      • Facades
  • Laravella
    • Cart
      • Facades
  • None
  • PHP

Classes

  • DbGopher
  • MysqlGopher
  • Overview
  • Namespace
  • Class
  • Tree
 1: <?php namespace Laravella\Cart\Facades;
 2: 
 3: /**
 4:  * Description of Db
 5:  *
 6:  * @author Victor
 7:  */
 8: 
 9: use Illuminate\Support\Facades\Facade;
10: 
11: class MysqlGopher extends Facade {
12: 
13:     /**
14:      * Get the registered name of the component.
15:      *
16:      * @return string
17:      */
18:     protected static function getFacadeAccessor()
19:     {
20:         return 'mysqlgopher';
21:     }
22: 
23: }
24: 
25: ?>
26: 
cart API documentation generated by ApiGen 2.8.0