protected function FileTest::makeCurrentUserFileOwner in Drupal 8
Same name and namespace in other branches
- 9 core/modules/jsonapi/tests/src/Functional/FileTest.php \Drupal\Tests\jsonapi\Functional\FileTest::makeCurrentUserFileOwner()
- 10 core/modules/jsonapi/tests/src/Functional/FileTest.php \Drupal\Tests\jsonapi\Functional\FileTest::makeCurrentUserFileOwner()
Makes the current user the file owner.
1 call to FileTest::makeCurrentUserFileOwner()
- FileTest::setUpAuthorization in core/
modules/ jsonapi/ tests/ src/ Functional/ FileTest.php - Sets up the necessary authorization.
File
- core/
modules/ jsonapi/ tests/ src/ Functional/ FileTest.php, line 92
Class
- FileTest
- JSON:API integration test for the "File" content entity type.
Namespace
Drupal\Tests\jsonapi\FunctionalCode
protected function makeCurrentUserFileOwner() {
$account = User::load(2);
$this->entity
->setOwnerId($account
->id());
$this->entity
->setOwner($account);
$this->entity
->save();
}