Files
Gazelle-Porn/app/API/AbstractAPI.php
T
2022-06-03 12:50:23 +08:00

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