/home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/PDF
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/PDF/PDFGeneratorInterface.php (1444B)
* @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);
}