Fix BaseApi and corresponding tests

This commit is contained in:
Philipp 2021-11-28 13:11:12 +01:00
parent 4cc36c9b2c
commit d576bb136b
No known key found for this signature in database
GPG key ID: 24A7501396EB5432
3 changed files with 40 additions and 1 deletions

View file

@ -67,6 +67,8 @@ class BaseApi extends BaseModule
public function __construct(App $app, L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, ApiResponse $response, array $server, array $parameters = [])
{
parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
$this->app = $app;
}
protected function delete()