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\Mvc
12 */
13
14 namespace Slimore\Mvc;
15
16 /**
17 * Class Model
18 *
19 * @author Pandao
20 * @package Slimore\Mvc
21 */
22
23 class Model extends \Illuminate\Database\Eloquent\Model
24 {
25 /**
26 * @var string
27 */
28
29 protected $table = null;
30
31 /**
32 * @var bool
33 */
34
35 public $timestamps = false;
36
37 /**
38 * Constructor
39 */
40
41 public function __construct()
42 {
43 parent::__construct();
44 }
45 }