* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\PDF; /** * Interface PDFGeneratorInterface defines a PDF generator. */ interface PDFGeneratorInterface { /** * Generates PDF out of given object and template using legacy generator. * * @param array $objectCollection collection of objects */ public function generatePDF(array $objectCollection); }