You are here

RegistryAutoloadTestTestInterface.php in Registry Autoload 7

Tests that PSR-4 namespaced classes and interfaces get registered correctly.

File

tests/modules/registry_autoload_test/src/Cache/RegistryAutoloadTestTestInterface.php
View source
<?php

/**
 * @file
 * Tests that PSR-4 namespaced classes and interfaces get registered correctly.
 */
namespace Drupal\registry_autoload_test\Cache;

interface RegistryAutoloadTestTestInterface {

  /**
   * Dummy function x to test interfaces.
   */
  public function x();

}

Interfaces