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

30 lines
493 B
PHP

<?php
namespace App\Invoice;
use App\InvoiceInterface;
class Jumpstart implements InvoiceInterface
{
public function check($criteria)
{
if ($this->getID() == $criteria->getServiceType())
return true;
return false;
}
public function getTemplate()
{
}
public function getID()
{
return 'jumpstart_troubleshoot';
}
public function compute($criteria, $stype_fees)
{
return [];
}
}