| 1 | <?php declare(strict_types=1); |
||
| 25 | class DB extends Model { |
||
| 26 | use \Aviat\Ion\Di\ContainerAware; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * The query builder object |
||
| 30 | * @var object $db |
||
| 31 | */ |
||
| 32 | protected $db; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * The database connection information array |
||
| 36 | * @var array $db_config |
||
| 37 | */ |
||
| 38 | protected $db_config; |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Constructor |
||
| 42 | * |
||
| 43 | * @param ContainerInterface $container |
||
| 44 | */ |
||
| 45 | public function __construct(ContainerInterface $container) |
||
| 50 | } |
||
| 51 | // End of DB.php |