Skip to content

Commit

Permalink
UHF-10045: Fix phpcs
Browse files Browse the repository at this point in the history
  • Loading branch information
hyrsky committed Aug 26, 2024
1 parent c2bffee commit 5da047f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/helfi_users/helfi_users.module
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<?php

declare(strict_types=1);

/**
* @file
* Helper functions related to deleting user accounts.
Expand All @@ -10,6 +8,8 @@ declare(strict_types=1);
* and we can reassign module weights / run order if necessary.
*/

declare(strict_types=1);

use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Session\AccountInterface;
use Drupal\Core\StringTranslation\TranslatableMarkup;
Expand Down Expand Up @@ -92,9 +92,9 @@ function helfi_users_user_cancel($edit, UserInterface $account, $method): void {
*
* Prevents crashes and timeouts when revisions are handled by node_mass_update.
*
* @param AccountInterface $source
* @param \Drupal\Core\Session\AccountInterface $source
* Source user.
* @param AccountInterface $target
* @param \Drupal\Core\Session\AccountInterface $target
* Target user.
*/
function _helfi_users_reassign_nodes(AccountInterface $source, AccountInterface $target): void {
Expand Down

0 comments on commit 5da047f

Please sign in to comment.