You are here

public function EntityResourceTest::patchIndividualConfigFailedProvider in JSON:API 8

Provides data for the testPatchIndividualFailedConfig.

Return value

array The input data for the test function.

File

tests/src/Kernel/Controller/EntityResourceTest.php, line 610

Class

EntityResourceTest
@coversDefaultClass \Drupal\jsonapi\Controller\EntityResource @group jsonapi @group legacy

Namespace

Drupal\Tests\jsonapi\Kernel\Controller

Code

public function patchIndividualConfigFailedProvider() {
  return [
    [
      [
        'uuid' => 'PATCHED',
      ],
    ],
    [
      [
        'type' => 'article',
        'status' => FALSE,
      ],
    ],
  ];
}