api-8.x-1.x-dev/tests/files/sample_namespace/InterfaceD.php
tests/files/sample_namespace/InterfaceD.php
<?php
/**
* @file Contains \api\test1\InterfaceD.
*/
namespace api\test1;
/**
* Another sample interface in a namespace.
*/
interface InterfaceD {
/**
* Another exciting method.
*
* @param \api\test2\InterfaceC $foo
* Something to test making links to a class.
*/
function dMethod($foo);
/**
* A copy of a method from Interface C.
*/
function cMethod();
}
