mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Minor fix for typed property
This commit is contained in:
parent
0a84ddfd9b
commit
6e06e7d1f2
@ -71,7 +71,7 @@ class BaseDriver extends AbstractPaymentDriver
|
|||||||
public $payment_method;
|
public $payment_method;
|
||||||
|
|
||||||
/* PaymentHash */
|
/* PaymentHash */
|
||||||
public ?PaymentHash $payment_hash;
|
public $payment_hash;
|
||||||
|
|
||||||
/* Array of payment methods */
|
/* Array of payment methods */
|
||||||
public static $methods = [];
|
public static $methods = [];
|
||||||
|
@ -33,18 +33,12 @@ use Tests\TestCase;
|
|||||||
class InvitationTest extends TestCase
|
class InvitationTest extends TestCase
|
||||||
{
|
{
|
||||||
use MakesHash;
|
use MakesHash;
|
||||||
//use DatabaseTransactions;
|
use DatabaseTransactions;
|
||||||
//use RefreshDatabase;
|
// use RefreshDatabase;
|
||||||
|
|
||||||
public function setUp() :void
|
public function setUp() :void
|
||||||
{
|
{
|
||||||
parent::setUp();
|
parent::setUp();
|
||||||
|
|
||||||
Session::start();
|
|
||||||
|
|
||||||
$this->faker = \Faker\Factory::create();
|
|
||||||
|
|
||||||
Model::reguard();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testInvoiceCreationAfterInvoiceMarkedSent()
|
public function testInvoiceCreationAfterInvoiceMarkedSent()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user