refactor: apply rector
Some checks are pending
tests / ci (push) Waiting to run

This commit is contained in:
Benjamin Nussbaum 2025-09-24 20:31:32 +02:00
parent c67a182cf2
commit b4b6286172
89 changed files with 672 additions and 666 deletions

View file

@ -6,7 +6,7 @@ use Illuminate\Foundation\Testing\RefreshDatabase;
uses(RefreshDatabase::class);
test('plugin import extracts default values from custom_fields and stores in configuration', function () {
test('plugin import extracts default values from custom_fields and stores in configuration', function (): void {
// Create a user
$user = User::factory()->create();
@ -74,7 +74,7 @@ test('plugin import extracts default values from custom_fields and stores in con
expect($plugin->configuration_template['custom_fields'])->toHaveCount(3);
});
test('plugin import handles custom_fields without default values', function () {
test('plugin import handles custom_fields without default values', function (): void {
// Create a user
$user = User::factory()->create();