Browse
For agents
About
MONEI Payments for WooCommerce
/
7.3.1
MONEI Payments for WooCommerce
v7.3.1
Switch version
7.3.3
7.3.2
7.3.1
7.3.0
7.2.4
7.2.3
7.2.2
7.2.0
7.2.1
7.1.3
2.1.0
3.0.0
3.1.0
3.1.1
4.0.0
4.1.0
4.1.1
4.2.0
4.2.1
5.0
5.1.0
5.1.1
5.1.2
5.2.2
5.2.3
All 87 releases
Overview
Code
monei
/
src
/
Templates
/
TemplateInterface.php
TemplateInterface.php
in MONEI Payments for WooCommerce 7.3.1, at src/Templates/TemplateInterface.php
15 lines
253 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
?
php
2
3
namespace
Monei
\
Templates
;
4
5
interface
TemplateInterface
{
6
7
/**
8
* Render or echo the HTML for this template.
9
*
10
*
@param
array
$data Data needed in the template to render
11
*
@return
void
12
*/
13
public
function
render
(
array
$
data
)
:
void
;
14
}
15