koel/app/Http/Controllers/Download/Controller.php
2021-06-05 12:47:56 +02:00

16 lines
374 B
PHP

<?php
namespace App\Http\Controllers\Download;
use App\Http\Controllers\API\Controller as BaseController;
use App\Services\DownloadService;
abstract class Controller extends BaseController
{
protected DownloadService $downloadService;
public function __construct(DownloadService $downloadService)
{
$this->downloadService = $downloadService;
}
}