15 lines
151 B
PHP
15 lines
151 B
PHP
<?php
|
|
class DBMethodContainer
|
|
{
|
|
protected $mysqli;
|
|
|
|
function __construct($mysqli)
|
|
{
|
|
$this->mysqli = $mysqli;
|
|
}
|
|
|
|
function __destruct()
|
|
{
|
|
}
|
|
}
|
|
?>
|