mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-07-14 11:01:31 -04:00
17 lines
339 B
PHP
17 lines
339 B
PHP
<?php
|
|
|
|
namespace Gazelle\API;
|
|
|
|
abstract class AbstractAPI extends \Gazelle\Base {
|
|
protected $twig;
|
|
protected $config;
|
|
|
|
public function __construct(\Twig\Environment $twig, array $config) {
|
|
parent::__construct();
|
|
$this->twig = $twig;
|
|
$this->config = $config;
|
|
}
|
|
|
|
abstract public function run();
|
|
}
|