30 lines
683 B
PHP
30 lines
683 B
PHP
<?php
|
|
|
|
/**
|
|
* <b>Reflector</b> is an interface implemented by all
|
|
* exportable Reflection classes.
|
|
*
|
|
* @link https://php.net/manual/en/class.reflector.php
|
|
*/
|
|
interface Reflector extends Stringable
|
|
{
|
|
/**
|
|
* Exports a class.
|
|
*
|
|
* @link https://php.net/manual/en/reflector.export.php
|
|
* @return string|null
|
|
* @removed 7.4
|
|
*/
|
|
public static function export();
|
|
|
|
/**
|
|
* Returns the string representation of any Reflection object.
|
|
*
|
|
* Please note that since PHP 8.0 this method is absent in this interface
|
|
* and inherits from the {@see Stringable} parent.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function __toString();
|
|
}
|