You are here

public function LoggerServiceTest::providerTestSetChannelGrantsException in Purge 8.3

Provides test data for testSetChannelGrantsException().

File

tests/src/Unit/Logger/LoggerServiceTest.php, line 286

Class

LoggerServiceTest
@coversDefaultClass \Drupal\purge\Logger\LoggerService

Namespace

Drupal\Tests\purge\Unit\Logger

Code

public function providerTestSetChannelGrantsException() : array {
  return [
    [
      'id1',
      [
        -1,
      ],
    ],
    [
      'id2',
      [
        10,
      ],
    ],
  ];
}