for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ByTIC\Payments\Tests\Fixtures\Records\Purchases;
use Nip\Records\AbstractModels\RecordManager;
/**
* Class PurchasableRecordManager
* @package ByTIC\Payments\Tests\Fixtures\Records\Purchases
*/
class PurchasableRecordManager extends RecordManager
{
protected $primaryKey = 'id';
public function getPaymentsUrlPK()
return 'id';
}
protected function generateTableStructure()
return [
'fields' => []
];