8 lines
104 B
PHP
Executable file
8 lines
104 B
PHP
Executable file
<?php
|
|
|
|
interface Payment_Method
|
|
{
|
|
public function get_params();
|
|
|
|
public function get_description();
|
|
}
|