You are here

TestUserInterface.php in Search API 8

File

tests/src/Unit/TestUserInterface.php
View source
<?php

namespace Drupal\Tests\search_api\Unit;

use Drupal\user\UserInterface;

/**
 * Provides a testable version of \Drupal\user\UserInterface.
 *
 * @see https://github.com/sebastianbergmann/phpunit-mock-objects/issues/103
 */
interface TestUserInterface extends \Iterator, UserInterface {

}

Interfaces

Namesort descending Description
TestUserInterface Provides a testable version of \Drupal\user\UserInterface.