You are here

protected property LoggerServiceTest::$defaultConfig in Purge 8.3

Default configuration.

Type: array[]

File

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

Class

LoggerServiceTest
@coversDefaultClass \Drupal\purge\Logger\LoggerService

Namespace

Drupal\Tests\purge\Unit\Logger

Code

protected $defaultConfig = [
  LoggerService::CONFIG => [
    LoggerService::CKEY => [
      [
        'id' => 'exists',
        'grants' => [
          1,
          2,
          3,
        ],
      ],
      [
        'id' => 'foo',
        'grants' => [
          1,
          2,
          3,
        ],
      ],
      [
        'id' => 'foobar',
        'grants' => [
          1,
          2,
          3,
        ],
      ],
      [
        'id' => 'foobarbaz',
        'grants' => [
          1,
          2,
          3,
        ],
      ],
    ],
  ],
];