Files
ops-Gazelle/app/API/AbstractAPI.php
T
2019-03-28 10:45:55 +00:00

18 lines
302 B
PHP

<?php
namespace Gazelle\API;
abstract class AbstractAPI {
protected $db;
protected $cache;
protected $config;
public function __construct(\DB_MYSQL $db, \CACHE $cache, array $config) {
$this->db = $db;
$this->cache = $cache;
$this->config = $config;
}
abstract public function run();
}