130 lines
3.4 KiB
PHP
130 lines
3.4 KiB
PHP
<?php
|
|
|
|
use JetBrains\PhpStorm\Immutable;
|
|
use JetBrains\PhpStorm\Internal\LanguageLevelTypeAware;
|
|
use JetBrains\PhpStorm\Internal\PhpStormStubsElementAvailable;
|
|
use JetBrains\PhpStorm\Internal\TentativeType;
|
|
use JetBrains\PhpStorm\Pure;
|
|
|
|
/**
|
|
* @link https://secure.php.net/manual/en/class.reflectionzendextension.php
|
|
* @since 5.4
|
|
*/
|
|
class ReflectionZendExtension implements Reflector
|
|
{
|
|
/**
|
|
* @var string Name of the extension, same as calling the {@see ReflectionZendExtension::getName()} method
|
|
*/
|
|
#[Immutable]
|
|
#[LanguageLevelTypeAware(['8.1' => 'string'], default: '')]
|
|
public $name;
|
|
|
|
/**
|
|
* Constructs a ReflectionZendExtension object
|
|
*
|
|
* @link https://php.net/manual/en/reflectionzendextension.construct.php
|
|
* @param string $name
|
|
* @throws ReflectionException if the extension does not exist.
|
|
* @since 5.4
|
|
*/
|
|
public function __construct(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $name) {}
|
|
|
|
/**
|
|
* Exports a reflected zend extension.
|
|
*
|
|
* @link https://php.net/manual/en/reflectionzendextension.export.php
|
|
* @param string $name The reflection to export.
|
|
* @param bool $return Setting to {@see true} will return the
|
|
* export, as opposed to emitting it. Setting to {@see false} (the default)
|
|
* will do the opposite.
|
|
* @return string|null If the $return parameter is set to {@see true}, then
|
|
* the export is returned as a string, otherwise {@see null} is returned.
|
|
*/
|
|
public static function export($name, $return = false) {}
|
|
|
|
/**
|
|
* To string handler
|
|
*
|
|
* @link https://php.net/manual/en/reflectionzendextension.tostring.php
|
|
* @return string
|
|
* @since 5.4
|
|
*/
|
|
#[TentativeType]
|
|
public function __toString(): string {}
|
|
|
|
/**
|
|
* Gets name
|
|
*
|
|
* @link https://php.net/manual/en/reflectionzendextension.getname.php
|
|
* @return string
|
|
* @since 5.4
|
|
*/
|
|
#[Pure]
|
|
#[TentativeType]
|
|
public function getName(): string {}
|
|
|
|
/**
|
|
* Gets version
|
|
*
|
|
* @link https://php.net/manual/en/reflectionzendextension.getversion.php
|
|
* @return string
|
|
* @since 5.4
|
|
*/
|
|
#[Pure]
|
|
#[TentativeType]
|
|
public function getVersion(): string {}
|
|
|
|
/**
|
|
* Gets author
|
|
*
|
|
* @link https://php.net/manual/en/reflectionzendextension.getauthor.php
|
|
* @return string
|
|
* @since 5.4
|
|
*/
|
|
#[Pure]
|
|
#[TentativeType]
|
|
public function getAuthor(): string {}
|
|
|
|
/**
|
|
* Gets URL
|
|
*
|
|
* @link https://php.net/manual/en/reflectionzendextension.geturl.php
|
|
* @return string
|
|
* @since 5.4
|
|
*/
|
|
#[Pure]
|
|
#[TentativeType]
|
|
public function getURL(): string {}
|
|
|
|
/**
|
|
* Gets copyright
|
|
*
|
|
* @link https://php.net/manual/en/reflectionzendextension.getcopyright.php
|
|
* @return string
|
|
* @since 5.4
|
|
*/
|
|
#[Pure]
|
|
#[TentativeType]
|
|
public function getCopyright(): string {}
|
|
|
|
/**
|
|
* Clone handler
|
|
*
|
|
* @link https://php.net/manual/en/reflectionzendextension.clone.php
|
|
* @return void
|
|
* @since 5.4
|
|
*/
|
|
#[PhpStormStubsElementAvailable(from: "5.4", to: "8.0")]
|
|
final private function __clone(): void {}
|
|
|
|
/**
|
|
* Clone handler
|
|
*
|
|
* @link https://php.net/manual/en/reflectionzendextension.clone.php
|
|
* @return void
|
|
* @since 5.4
|
|
*/
|
|
#[PhpStormStubsElementAvailable(from: "8.1")]
|
|
private function __clone(): void {}
|
|
}
|