12 lines
225 B
PHP
12 lines
225 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
interface InvoiceInterface
|
|
{
|
|
// check if the invoice rule is in the criteria
|
|
public function check($criteria);
|
|
|
|
// display the html partial for the form
|
|
public function getTemplate();
|
|
}
|