rich-id/excel-generator-bundle

View on GitHub
src/Generator/ExcelGeneratorInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace RichId\ExcelGeneratorBundle\Generator;

use RichId\ExcelGeneratorBundle\Model\ExcelSpreadsheet;

/**
 * Interface ExcelGeneratorInterface.
 *
 * @author    Hugo Dumazeau <hugo.dumazeau@rich-id.fr>
 * @copyright 2014 - 2021 RichId (https://www.rich-id.fr)
 */
interface ExcelGeneratorInterface
{
    public function save(ExcelSpreadsheet $excelSpreadsheet, string $path): void;
}