Lint
This commit is contained in:
parent
51fbc4b1aa
commit
7ba76b0908
|
@ -10,6 +10,7 @@ use App\Nationality;
|
||||||
use App\Payment\Payment;
|
use App\Payment\Payment;
|
||||||
use App\Payment\Subscription;
|
use App\Payment\Subscription;
|
||||||
use Illuminate\Database\Eloquent\Factories\Factory;
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @extends Factory<Member>
|
* @extends Factory<Member>
|
||||||
|
@ -70,7 +71,7 @@ class MemberFactory extends Factory
|
||||||
*/
|
*/
|
||||||
public function withPayments(array $payments): self
|
public function withPayments(array $payments): self
|
||||||
{
|
{
|
||||||
return $this->afterCreating(function (Member $model) use ($payments): void {
|
return $this->afterCreating(function (Model $model) use ($payments): mixed {
|
||||||
foreach ($payments as $paymentClosure) {
|
foreach ($payments as $paymentClosure) {
|
||||||
$factory = Payment::factory()->for($model);
|
$factory = Payment::factory()->for($model);
|
||||||
$factory = call_user_func($paymentClosure, $factory);
|
$factory = call_user_func($paymentClosure, $factory);
|
||||||
|
|
|
@ -63,7 +63,9 @@ abstract class TestCase extends BaseTestCase
|
||||||
|
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
public function assertErrors(array $errors, TestResponse $response) {
|
|
||||||
|
public function assertErrors(array $errors, TestResponse $response): self
|
||||||
|
{
|
||||||
$response->assertSessionHas('errors');
|
$response->assertSessionHas('errors');
|
||||||
$this->assertInstanceOf(RedirectResponse::class, $response->baseResponse);
|
$this->assertInstanceOf(RedirectResponse::class, $response->baseResponse);
|
||||||
/** @var RedirectResponse */
|
/** @var RedirectResponse */
|
||||||
|
|
Loading…
Reference in New Issue