This repository has been archived on 2024-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
epubreader/lib/Service/Service.php

24 lines
415 B
PHP
Raw Normal View History

2020-04-21 22:37:42 +02:00
<?php
/**
* @author Frank de Lange
* @copyright 2017 Frank de Lange
*
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
namespace OCA\Epubreader\Service;
2020-04-21 22:37:42 +02:00
use OCA\Epubreader\Db\ReaderMapper;
2020-04-21 22:37:42 +02:00
2023-08-02 22:04:03 +02:00
abstract class Service
{
2023-06-16 21:20:03 +02:00
protected ReaderMapper $mapper;
2020-04-21 22:37:42 +02:00
2023-08-02 22:04:03 +02:00
public function __construct(ReaderMapper $mapper)
{
2023-06-16 16:58:23 +02:00
$this->mapper = $mapper;
}
2020-04-21 22:37:42 +02:00
}