1 <?php
2
3 /**
4 * Slimore - The fully (H)MVC framework based on the Slim PHP framework.
5 *
6 * @author Pandao <slimore@ipandao.com>
7 * @copyright 2015 Pandao
8 * @link http://github.com/slimore/slimore
9 * @license MIT License https://github.com/slimore/slimore#license
10 * @version 0.1.0
11 * @package Slimore\Database
12 */
13
14 namespace Slimore\Database;
15
16 use \Illuminate\Database\Capsule\Manager as Capsule;
17
18 /**
19 * Class Manager
20 *
21 * @author Pandao
22 * @package Slimore\Database
23 */
24
25 class Manager extends Capsule {
26
27 }