mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-13 14:42:42 +01:00
9 lines
104 B
PHP
9 lines
104 B
PHP
|
<?php
|
||
|
|
||
|
interface Payment_Method
|
||
|
{
|
||
|
public function get_params();
|
||
|
|
||
|
public function get_description();
|
||
|
}
|