resq/src/InvoiceInterface.php
2023-05-26 05:54:22 -04:00

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();
}