diff --git a/Models/InvoiceMapper.php b/Models/InvoiceMapper.php index 6336d44..bcefc3a 100644 --- a/Models/InvoiceMapper.php +++ b/Models/InvoiceMapper.php @@ -26,4 +26,19 @@ use phpOMS\DataStorage\Database\DataMapperAbstract; */ final class InvoiceMapper extends DataMapperAbstract { + /** + * Primary field name. + * + * @var string + * @since 1.0.0 + */ + protected static $primaryField = 'billing_invoice_id'; + + /** + * Primary table. + * + * @var string + * @since 1.0.0 + */ + protected static $table = 'billing_invoice'; }