-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Se crea interfaz para los renderizadores de documentos.
- Loading branch information
1 parent
147f6f1
commit e6f4b5b
Showing
3 changed files
with
48 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* LibreDTE: Biblioteca PHP (Núcleo). | ||
* Copyright (C) LibreDTE <https://www.libredte.cl> | ||
* | ||
* Este programa es software libre: usted puede redistribuirlo y/o modificarlo | ||
* bajo los términos de la Licencia Pública General Affero de GNU publicada | ||
* por la Fundación para el Software Libre, ya sea la versión 3 de la Licencia, | ||
* o (a su elección) cualquier versión posterior de la misma. | ||
* | ||
* Este programa se distribuye con la esperanza de que sea útil, pero SIN | ||
* GARANTÍA ALGUNA; ni siquiera la garantía implícita MERCANTIL o de APTITUD | ||
* PARA UN PROPÓSITO DETERMINADO. Consulte los detalles de la Licencia Pública | ||
* General Affero de GNU para obtener una información más detallada. | ||
* | ||
* Debería haber recibido una copia de la Licencia Pública General Affero de | ||
* GNU junto a este programa. | ||
* | ||
* En caso contrario, consulte <http://www.gnu.org/licenses/agpl.html>. | ||
*/ | ||
|
||
namespace libredte\lib\Core\Sii\Dte\Documento\Renderer; | ||
|
||
use libredte\lib\Core\Sii\Dte\Documento\AbstractDocumento; | ||
|
||
/** | ||
* Interfaz para los renderizadores de documentos tributarios electrónicos. | ||
*/ | ||
interface RendererInterface | ||
{ | ||
/** | ||
* Renderiza el documento en el formato solicitado. | ||
* | ||
* @param AbstractDocumento $documento Documento a renderizar. | ||
* @param array $options Opciones para el renderizado. | ||
* @return string Datos del documento renderizado. | ||
*/ | ||
public function render( | ||
AbstractDocumento $documento, | ||
array $options = [] | ||
): string; | ||
} |