mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-07-14 02:01:31 -04:00
18 lines
302 B
PHP
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();
|
|
}
|