Per the Stable Interface Policy, PHP interfaces should not be directly implemented by extensions, unless they are marked to be safe for that purpose. Bug: T247862 Change-Id: Idd5783b70fc00c03d57f5b1a887f0e47c4d7b146
15 lines
233 B
PHP
15 lines
233 B
PHP
<?php
|
|
|
|
/**
|
|
* Callback wrapper that has an originating method
|
|
*
|
|
* @stable for implementation
|
|
*
|
|
* @since 1.28
|
|
*/
|
|
interface DeferrableCallback {
|
|
/**
|
|
* @return string Originating method name
|
|
*/
|
|
public function getOrigin();
|
|
}
|