You are here

protected property EntityShareCronServiceTest::$remotesConfig in Entity Share Cron 8.2

Same name and namespace in other branches
  1. 8 tests/src/Unit/EntityShareCronServiceTest.php \Drupal\Tests\entity_share_cron\Unit\EntityShareCronServiceTest::remotesConfig

Remote settings.

Type: array

File

tests/src/Unit/EntityShareCronServiceTest.php, line 35

Class

EntityShareCronServiceTest
@coversDefaultClass \Drupal\entity_share_cron\EntityShareCronService @group entity_share_cron

Namespace

Drupal\Tests\entity_share_cron\Unit

Code

protected $remotesConfig = [
  self::REMOTE_ID => [
    'enabled' => TRUE,
    'channels' => [
      self::CHANNEL_ID => [
        'enabled' => TRUE,
        'url' => self::CHANNEL_URL,
        'url_uuid' => self::CHANNEL_URL,
        'operations' => [
          'create' => TRUE,
          'update' => TRUE,
        ],
      ],
    ],
  ],
];