AbstractReportService.php
26 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 | * Class AbstractReportService |
| 12 | * |
| 13 | * @package AmeliaBooking\Domain\Services\Report |
| 14 | */ |
| 15 | abstract class AbstractReportService |
| 16 | { |
| 17 | /** |
| 18 | * @param array $rows |
| 19 | * @param String $name |
| 20 | * @param String $delimiter |
| 21 | * |
| 22 | * @return mixed|void |
| 23 | */ |
| 24 | abstract public function generateReport($rows, $name, $delimiter); |
| 25 | } |
| 26 |