Skip to content

Commit

Permalink
fix: php codesniffer error in test
Browse files Browse the repository at this point in the history
  • Loading branch information
lewislarsen committed Jun 14, 2024
1 parent 4eff88b commit e72dcc3
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,12 @@ function createUserWithBackupTaskAndDependencies(): array
]);
$backupDestination = BackupDestination::factory()->create(['user_id' => $user->id]);

return compact('user', 'remoteServer', 'backupTask', 'backupDestination');
return [
'user' => $user,
'remoteServer' => $remoteServer,
'backupTask' => $backupTask,
'backupDestination' => $backupDestination,
];
}

beforeEach(function () {
Expand Down

0 comments on commit e72dcc3

Please sign in to comment.