Same filename and directory in other branches
  1. 8.9.x core/modules/system/tests/modules/entity_test/src/EntityTestNoLoadStorage.php
  2. 9 core/modules/system/tests/modules/entity_test/src/EntityTestNoLoadStorage.php

Namespace

Drupal\entity_test

File

core/modules/system/tests/modules/entity_test/src/EntityTestNoLoadStorage.php
View source
<?php

namespace Drupal\entity_test;

use Drupal\Core\Entity\EntityStorageException;
use Drupal\Core\Entity\Sql\SqlContentEntityStorage;

/**
 * Test storage class used to verify that no load operation is triggered.
 */
class EntityTestNoLoadStorage extends SqlContentEntityStorage {

  /**
   * {@inheritdoc}
   */
  public function load($id) {
    throw new EntityStorageException('No load operation is supposed to happen.');
  }

}

Classes

Namesort descending Description
EntityTestNoLoadStorage Test storage class used to verify that no load operation is triggered.