<?php
namespace Vend\Base;
abstract class Repository
{
protected $mysqli;
protected $error;
public function __construct()
{
global $mysqli;
$this->mysqli = $mysqli;
}
public function error()
{
return $this->error;
}
}