Test fixes after module+builder test extension

This commit is contained in:
Dennis Eichhorn 2019-02-26 21:42:51 +01:00
parent 9dd1f7258e
commit 6d8fcb2f41

View File

@ -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';
}