You are here

public function ForcePasswordChangeServiceTest::getFirstTimeLoginUidsDataProvider in Force Password Change 8

Same name and namespace in other branches
  1. 2.0.x tests/src/Unit/Service/ForcePasswordChangeServiceTest.php \Drupal\Tests\force_password_change\Unit\Service\ForcePasswordChangeServiceTest::getFirstTimeLoginUidsDataProvider()

* Data provider for getFirstTimeLoginUids()

File

tests/src/Unit/Service/ForcePasswordChangeServiceTest.php, line 413

Class

ForcePasswordChangeServiceTest
@coversDefaultClass \Drupal\force_password_change\Service\ForcePasswordChangeService @group force_password_change

Namespace

Drupal\Tests\force_password_change\Unit\Service

Code

public function getFirstTimeLoginUidsDataProvider() {
  return [
    [
      [],
    ],
    [
      [
        1,
        2,
        3,
      ],
    ],
  ];
}