for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ByTIC\Payments\Tests\Fixtures\Records\PaymentMethods;
use ByTIC\Payments\Models\Methods\Traits\RecordTrait as PaymentMethodTrait;
use Nip\Records\AbstractModels\Record;
/**
* Class PaymentMethod
* @package ByTIC\Payments\Tests\Fixtures\Records\PaymentMethods
*/
class PaymentMethod extends Record
{
use PaymentMethodTrait;
public function getRegistry()
}
public function getManager()
return PaymentMethods::instance();
* @return string
public function getFilesDirectory()
return TEST_FIXTURE_PATH . '/files/';
protected function inflectManagerName()
return PaymentMethods::class;
* @return int
public function getPurchasesCount()
return 2;