Files
ops-Gazelle/app/API/AbstractAPI.php
T

14 lines
233 B
PHP

<?php
namespace Gazelle\API;
abstract class AbstractAPI extends \Gazelle\Base {
protected $config;
public function __construct(array $config) {
$this->config = $config;
}
abstract public function run();
}