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

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();
}