ReportServiceInterface.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * @copyright © Melograno Ventures. All rights reserved. |
| 5 | * @licence See LICENCE.md for license details. |
| 6 | */ |
| 7 | |
| 8 | namespace AmeliaBooking\Domain\Services\Report; |
| 9 | |
| 10 | /** |
| 11 | * Interface ReportServiceInterface |
| 12 | * |
| 13 | * @package AmeliaBooking\Domain\Services\Report |
| 14 | */ |
| 15 | interface ReportServiceInterface |
| 16 | { |
| 17 | public function generateReport(array $rows, string $name, string $delimiter); |
| 18 | } |
| 19 |