public function EntityResourceTest::patchIndividualConfigProvider in JSON:API 8
Provides data for the testPatchIndividualConfig.
Return value
array The input data for the test function.
File
- tests/
src/ Kernel/ Controller/ EntityResourceTest.php, line 588
Class
- EntityResourceTest
- @coversDefaultClass \Drupal\jsonapi\Controller\EntityResource @group jsonapi @group legacy
Namespace
Drupal\Tests\jsonapi\Kernel\ControllerCode
public function patchIndividualConfigProvider() {
return [
[
[
'description' => 'PATCHED',
'status' => FALSE,
],
],
[
[],
],
];
}