You are here

protected function ImageFieldTestBase::getLastFileId in Drupal 8

Same name in this branch
  1. 8 core/modules/image/src/Tests/ImageFieldTestBase.php \Drupal\image\Tests\ImageFieldTestBase::getLastFileId()
  2. 8 core/modules/image/tests/src/Functional/ImageFieldTestBase.php \Drupal\Tests\image\Functional\ImageFieldTestBase::getLastFileId()

Retrieves the fid of the last inserted file.

File

core/modules/image/src/Tests/ImageFieldTestBase.php, line 111

Class

ImageFieldTestBase
This class provides methods specifically for testing Image's field handling.

Namespace

Drupal\image\Tests

Code

protected function getLastFileId() {
  return (int) \Drupal::entityQueryAggregate('file')
    ->aggregate('fid', 'max')
    ->execute()[0]['fid_max'];
}