You are here

ForcePasswordChangeServiceTest.php in Force Password Change 2.0.x

File

tests/modules/force_password_change_service_test/src/Service/ForcePasswordChangeServiceTest.php
View source
<?php

namespace Drupal\force_password_change_service_test\Service;

use Drupal\force_password_change\Service\ForcePasswordChangeService;

/**
 * Test class created to override the ForcePasswordChangeService service.
 */
class ForcePasswordChangeServiceTest extends ForcePasswordChangeService {

  /**
   * {@inheritdoc}
   */
  protected function userLoadMultiple(array $uids) {
    $return = [];
    foreach ($uids as $uid) {
      $return[$uid] = 'user' . $uid;
    }
    return $return;
  }

}

Classes

Namesort descending Description
ForcePasswordChangeServiceTest Test class created to override the ForcePasswordChangeService service.