30 lines
493 B
PHP
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 [];
|
|
}
|
|
}
|