| Current Path : /home/rtorresani/www/vendor/magento/module-offline-payments/Block/Info/ |
| Current File : //home/rtorresani/www/vendor/magento/module-offline-payments/Block/Info/Purchaseorder.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\OfflinePayments\Block\Info;
class Purchaseorder extends \Magento\Payment\Block\Info
{
/**
* @var string
*/
protected $_template = 'Magento_OfflinePayments::info/purchaseorder.phtml';
/**
* @return string
*/
public function toPdf()
{
$this->setTemplate('Magento_OfflinePayments::info/pdf/purchaseorder.phtml');
return $this->toHtml();
}
}