code
stringlengths
31
1.39M
docstring
stringlengths
23
16.8k
func_name
stringlengths
1
126
language
stringclasses
1 value
repo
stringlengths
7
63
path
stringlengths
7
166
url
stringlengths
50
220
license
stringclasses
7 values
#[LanguageLevelTypeAware(['8.1' => 'DEPTRAC_INTERNAL\\PSpell\\Config'], default: 'int')] function pspell_config_create(string $language, string $spelling = "", string $jargon = "", string $encoding = "") { }
Create a config used to open a dictionary @link https://php.net/manual/en/function.pspell-config-create.php @param string $language <p> The language parameter is the language code which consists of the two letter ISO 639 language code and an optional two letter ISO 3166 country code after a dash or underscore. </p> @param string $spelling <p> The spelling parameter is the requested spelling for languages with more than one spelling such as English. Known values are 'american', 'british', and 'canadian'. </p> @param string $jargon <p> The jargon parameter contains extra information to distinguish two different words lists that have the same language and spelling parameters. </p> @param string $encoding <p> The encoding parameter is the encoding that words are expected to be in. Valid values are 'utf-8', 'iso8859-*', 'koi8-r', 'viscii', 'cp1252', 'machine unsigned 16', 'machine unsigned 32'. This parameter is largely untested, so be careful when using. </p> @return int Retuns a pspell config identifier.
pspell_config_create
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/pspell/pspell.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/pspell/pspell.php
MIT
#[Pure] function mt_getrandmax() : int { }
Show largest possible random value @link https://php.net/manual/en/function.mt-getrandmax.php @return int the maximum random value returned by mt_rand
mt_getrandmax
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/random/random.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/random/random.php
MIT
#[Pure] function getrandmax() : int { }
Show largest possible random value @link https://php.net/manual/en/function.getrandmax.php @return int The largest possible random value returned by rand
getrandmax
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/random/random.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/random/random.php
MIT
#[Deprecated] function rd_kafka_errno2err($errnox) { }
@param int $errnox A system errno @return int Returns a kafka error code as an integer.
rd_kafka_errno2err
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/rdkafka/functions.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/rdkafka/functions.php
MIT
#[Deprecated] function rd_kafka_errno() { }
@return int Returns the system errno as an integer.
rd_kafka_errno
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/rdkafka/functions.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/rdkafka/functions.php
MIT
#[ArrayShape(['line_buffer' => 'string', 'point' => 'int', 'end' => 'int', 'mark' => 'int', 'done' => 'int', 'pending_input' => 'int', 'prompt' => 'string', 'terminal_name' => 'string', 'completion_append_character' => 'string', 'completion_suppress_append' => 'bool', 'erase_empty_line' => 'int', 'library_version' => 'string', 'readline_name' => 'string', 'attempted_completion_over' => 'int'])] function readline_info(?string $var_name, $value) : mixed { }
Gets/sets various internal readline variables @link https://php.net/manual/en/function.readline-info.php @param string|null $var_name [optional] <p> A variable name. </p> @param string $value [optional] <p> If provided, this will be the new value of the setting. </p> @return mixed If called with no parameters, this function returns an array of values for all the setting readline uses. The elements will be indexed by the following values: done, end, erase_empty_line, library_version, line_buffer, mark, pending_input, point, prompt, readline_name, and terminal_name. </p> <p> If called with one or two parameters, the old value is returned.
readline_info
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/readline/readline.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/readline/readline.php
MIT
#[Deprecated(replacement: '%class%->connect(%parametersList%)')] public function open($host, $port = 6379, $timeout = 0, $persistent_id = null, $retry_interval = 0, $read_timeout = 0, $context = null) { }
Connects to a Redis instance. @param string $host can be a host, or the path to a unix domain socket @param int $port optional @param float $timeout value in seconds (optional, default is 0.0 meaning it will use `default_socket_timeout`) @param string $persistent_id identity for the requested persistent connection @param int $retry_interval retry interval in milliseconds. @param float $read_timeout value in seconds (optional, default is 0 meaning it will use `default_socket_timeout`) @param array $context since PhpRedis >= 5.3.0 can specify authentication and stream information on connect @return bool TRUE on success, FALSE on error @throws RedisException
open
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/redis/Redis.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/redis/Redis.php
MIT
#[Deprecated(replacement: '%class%->pconnect(%parametersList%)')] public function popen($host, $port = 6379, $timeout = 0, $persistent_id = null, $retry_interval = 0, $read_timeout = 0, $context = null) { }
@param string $host @param int $port @param float $timeout @param string|null $persistent_id @param int $retry_interval @param float $read_timeout @param array|null $context @return bool @throws RedisException
popen
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/redis/Redis.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/redis/Redis.php
MIT
#[Deprecated(replacement: "%class%->del(%parametersList%)")] public function delete($key, ...$otherKeys) { }
Remove specified keys. @param string|array $key An array of keys, or an undefined number of parameters, each a key: key1 key2 key3 ... keyN @param string ...$otherKeys @return false|int|Redis Number of keys deleted or Redis if in multimode @throws RedisException
delete
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/redis/Redis.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/redis/Redis.php
MIT
#[Deprecated(replacement: '%class%->lLen(%parametersList%)')] public function lSize($key) { }
@link https://redis.io/commands/llen @param string $key @return false|int|Redis The size of the list identified by Key exists or Redis if in multimode @throws RedisException
lSize
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/redis/Redis.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/redis/Redis.php
MIT
#[Deprecated(replacement: '%class%->lIndex(%parametersList%)')] public function lGet($key, $index) { }
@link https://redis.io/commands/lindex @param string $key @param int $index @return mixed|bool|Redis the element at this index or Redis if in multimode @throws RedisException
lGet
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/redis/Redis.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/redis/Redis.php
MIT
#[Deprecated(replacement: '%class%->lRange(%parametersList%)')] public function lGetRange($key, $start, $end) { }
@link https://redis.io/commands/lrange @param string $key @param int $start @param int $end @return array|Redis returns Redis if in multimode @throws RedisException
lGetRange
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/redis/Redis.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/redis/Redis.php
MIT
#[Deprecated(replacement: '%class%->lTrim(%parametersList%)')] public function listTrim($key, $start, $stop) { }
@link https://redis.io/commands/ltrim @param string $key @param int $start @param int $stop @throws RedisException
listTrim
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/redis/Redis.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/redis/Redis.php
MIT
#[Deprecated(replacement: '%class%->lRem(%parametersList%)')] public function lRemove($key, $value, $count) { }
@link https://redis.io/commands/lremove @param string $key @param string $value @param int $count @throws RedisException
lRemove
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/redis/Redis.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/redis/Redis.php
MIT
#[Deprecated(replacement: '%class%->sRem(%parametersList%)')] public function sRemove($key, ...$member1) { }
@link https://redis.io/commands/srem @param string $key @param string|mixed ...$member1 @throws RedisException
sRemove
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/redis/Redis.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/redis/Redis.php
MIT
#[Deprecated(replacement: '%class%->sIsMember(%parametersList%)')] public function sContains($key, $value) { }
@link https://redis.io/commands/sismember @param string $key @param string|mixed $value @throws RedisException
sContains
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/redis/Redis.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/redis/Redis.php
MIT
#[Deprecated(replacement: '%class%->sMembers(%parametersList%)')] public function sGetMembers($key) { }
@link https://redis.io/commands/smembers @param string $key @return array|Redis An array of elements, the contents of the set or Redis if in multimode @throws RedisException
sGetMembers
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/redis/Redis.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/redis/Redis.php
MIT
#[Deprecated(replacement: '%class%->rename(%parametersList%)')] public function renameKey($srcKey, $dstKey) { }
@link https://redis.io/commands/rename @param string $srcKey @param string $dstKey @throws RedisException
renameKey
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/redis/Redis.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/redis/Redis.php
MIT
#[Deprecated(replacement: '%class%->expire(%parametersList%)')] public function setTimeout($key, $ttl) { }
@link https://redis.io/commands/expire @param string $key @param int $ttl @return bool|Redis returns Redis if in multimode @throws RedisException
setTimeout
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/redis/Redis.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/redis/Redis.php
MIT
#[Deprecated(replacement: '%class%->keys(%parametersList%)')] public function getKeys($pattern) { }
@param string $pattern @throws RedisException @link https://redis.io/commands/keys
getKeys
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/redis/Redis.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/redis/Redis.php
MIT
#[Deprecated(replacement: '%class%->replicaof(%parametersList%)')] public function slaveof($host = '127.0.0.1', $port = 6379) { }
Changes the slave status Either host and port, or no parameter to stop being a slave. This method and the corresponding command in Redis has been marked deprecated and users should instead use replicaof() if connecting to redis-server >= 5.0.0. @param string $host [optional] @param int $port [optional] @return bool|Redis TRUE in case of success, FALSE in case of failure or Redis if in multimode @throws RedisException @link https://redis.io/commands/slaveof @example <pre> $redis->slaveof('10.0.1.7', 6379); // ... $redis->slaveof(); </pre>
slaveof
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/redis/Redis.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/redis/Redis.php
MIT
#[Deprecated] public function substr($key, $start, $end) { }
Return a substring of a larger string @param string $key @param int $start @param int $end @throws RedisException
substr
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/redis/Redis.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/redis/Redis.php
MIT
#[Deprecated(replacement: "%class%->rawCommand('CONFIG', 'RESETSTAT')")] public function resetStat() { }
Resets the statistics reported by Redis using the INFO command (`info()` function). These are the counters that are reset: - Keyspace hits - Keyspace misses - Number of commands processed - Number of connections received - Number of expired keys @return bool|Redis `TRUE` in case of success, `FALSE` in case of failure or Redis if in multimode @throws RedisException @example $redis->resetStat(); @link https://redis.io/commands/config-resetstat
resetStat
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/redis/Redis.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/redis/Redis.php
MIT
#[Deprecated(replacement: '%class%->mGet(%parametersList%)')] public function getMultiple(array $keys) { }
Get the values of all the specified keys. If one or more keys dont exist, the array will contain FALSE at the position of the key. @param array $keys Array containing the list of the keys @return array|Redis Array containing the values related to keys in argument or Redis if in multimode @throws RedisException @example <pre> $redis->set('key1', 'value1'); $redis->set('key2', 'value2'); $redis->set('key3', 'value3'); $redis->getMultiple(array('key1', 'key2', 'key3')); // array('value1', 'value2', 'value3'); $redis->getMultiple(array('key0', 'key1', 'key5')); // array(`FALSE`, 'value2', `FALSE`); </pre>
getMultiple
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/redis/Redis.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/redis/Redis.php
MIT
#[Deprecated(replacement: '%class%->zRem(%parametersList%)')] public function zDelete($key, $member1, ...$otherMembers) { }
@link https://redis.io/commands/zrem @param string $key @param string|mixed $member1 @param string|mixed ...$otherMembers @return false|int|Redis Number of deleted values or Redis if in multimode @throws RedisException
zDelete
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/redis/Redis.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/redis/Redis.php
MIT
#[Deprecated(replacement: '%class%->zRemRangeByScore(%parametersList%)')] public function zDeleteRangeByScore($key, $start, $end) { }
@param string $key @param float $start @param float $end @throws RedisException
zDeleteRangeByScore
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/redis/Redis.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/redis/Redis.php
MIT
#[Deprecated(replacement: '%class%->zRemRangeByRank(%parametersList%)')] public function zDeleteRangeByRank($key, $start, $end) { }
@link https://redis.io/commands/zremrangebyscore @param string $key @param int $start @param int $end @throws RedisException
zDeleteRangeByRank
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/redis/Redis.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/redis/Redis.php
MIT
#[Deprecated(replacement: '%class%->zCard(%parametersList%)')] public function zSize($key) { }
@param string $key @return false|int|Redis returns Redis if in multimode @throws RedisException
zSize
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/redis/Redis.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/redis/Redis.php
MIT
#[Deprecated(replacement: '%class%->zUnionStore(%parametersList%)')] public function zUnion($Output, $ZSetKeys, array $Weights = null, $aggregateFunction = 'SUM') { }
@param string $Output @param array $ZSetKeys @param array|null $Weights @param string $aggregateFunction @throws RedisException
zUnion
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/redis/Redis.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/redis/Redis.php
MIT
#[Deprecated(replacement: '%class%->zInterStore(%parametersList%)')] public function zInter($Output, $ZSetKeys, array $Weights = null, $aggregateFunction = 'SUM') { }
@param $Output @param $ZSetKeys @param array|null $Weights @param string $aggregateFunction @throws RedisException
zInter
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/redis/Redis.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/redis/Redis.php
MIT
#[Deprecated(replacement: '%class%->eval(%parametersList%)')] public function evaluate($script, $args = [], $numKeys = 0) { }
@param string $script @param array $args @param int $numKeys @return mixed|Redis @see eval() , returns Redis if in multimode @throws RedisException
evaluate
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/redis/Redis.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/redis/Redis.php
MIT
#[Deprecated(replacement: '%class%->evalSha(%parametersList%)')] public function evaluateSha($scriptSha, $args = [], $numKeys = 0) { }
@param string $scriptSha @param array $args @param int $numKeys @throws RedisException
evaluateSha
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/redis/Redis.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/redis/Redis.php
MIT
#[TentativeType] public static function getModifierNames(#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $modifiers) : array { }
Gets modifier names @link https://php.net/manual/en/reflection.getmodifiernames.php @param int $modifiers Bitfield of the modifiers to get. @return string[] An array of modifier names.
getModifierNames
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/Reflection.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/Reflection.php
MIT
#[Pure] public function getName() : string { }
Gets attribute name @return string The name of the attribute parameter. @since 8.0
getName
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionAttribute.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionAttribute.php
MIT
#[Pure] public function getTarget() : int { }
Returns the target of the attribute as a bit mask format. @return int @since 8.0
getTarget
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionAttribute.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionAttribute.php
MIT
#[Pure] public function isRepeated() : bool { }
Returns {@see true} if the attribute is repeated. @return bool @since 8.0
isRepeated
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionAttribute.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionAttribute.php
MIT
#[Pure] public function getArguments() : array { }
Gets list of passed attribute's arguments. @return array @since 8.0
getArguments
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionAttribute.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionAttribute.php
MIT
#[TentativeType] public function __toString() : string { }
Returns the string representation of the ReflectionClass object. @link https://php.net/manual/en/reflectionclass.tostring.php @return string A string representation of this {@see ReflectionClass} instance.
__toString
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function getName() : string { }
Gets class name @link https://php.net/manual/en/reflectionclass.getname.php @return string The class name.
getName
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function isInternal() : bool { }
Checks if class is defined internally by an extension, or the core @link https://php.net/manual/en/reflectionclass.isinternal.php @return bool Returns {@see true} on success or {@see false} on failure.
isInternal
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function isUserDefined() : bool { }
Checks if user defined @link https://php.net/manual/en/reflectionclass.isuserdefined.php @return bool Returns {@see true} on success or {@see false} on failure.
isUserDefined
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function isInstantiable() : bool { }
Checks if the class is instantiable @link https://php.net/manual/en/reflectionclass.isinstantiable.php @return bool Returns {@see true} on success or {@see false} on failure.
isInstantiable
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function isCloneable() : bool { }
Returns whether this class is cloneable @link https://php.net/manual/en/reflectionclass.iscloneable.php @return bool Returns {@see true} if the class is cloneable, {@see false} otherwise. @since 5.4
isCloneable
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function getFileName() : string|false { }
Gets the filename of the file in which the class has been defined @link https://php.net/manual/en/reflectionclass.getfilename.php @return string|false the filename of the file in which the class has been defined. If the class is defined in the PHP core or in a PHP extension, {@see false} is returned.
getFileName
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function getStartLine() : int|false { }
Gets starting line number @link https://php.net/manual/en/reflectionclass.getstartline.php @return int The starting line number, as an integer.
getStartLine
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function getEndLine() : int|false { }
Gets end line @link https://php.net/manual/en/reflectionclass.getendline.php @return int|false The ending line number of the user defined class, or {@see false} if unknown.
getEndLine
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function getDocComment() : string|false { }
Gets doc comments @link https://php.net/manual/en/reflectionclass.getdoccomment.php @return string|false The doc comment if it exists, otherwise {@see false}
getDocComment
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function getConstructor() : ?\ReflectionMethod { }
Gets the constructor of the class @link https://php.net/manual/en/reflectionclass.getconstructor.php @return ReflectionMethod|null A {@see ReflectionMethod} object reflecting the class' constructor, or {@see null} if the class has no constructor.
getConstructor
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[TentativeType] public function hasMethod(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $name) : bool { }
Checks if method is defined @link https://php.net/manual/en/reflectionclass.hasmethod.php @param string $name Name of the method being checked for. @return bool Returns {@see true} if it has the method, otherwise {@see false}
hasMethod
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function getMethod(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $name) : \ReflectionMethod { }
Gets a <b>ReflectionMethod</b> for a class method. @link https://php.net/manual/en/reflectionclass.getmethod.php @param string $name The method name to reflect. @return ReflectionMethod A {@see ReflectionMethod} @throws ReflectionException if the method does not exist.
getMethod
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function getMethods(#[LanguageLevelTypeAware(['8.0' => 'int|null'], default: '')] $filter = null) : array { }
Gets an array of methods for the class. @link https://php.net/manual/en/reflectionclass.getmethods.php @param int|null $filter Filter the results to include only methods with certain attributes. Defaults to no filtering. @return ReflectionMethod[] An array of {@see ReflectionMethod} objects reflecting each method.
getMethods
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[TentativeType] public function hasProperty(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $name) : bool { }
Checks if property is defined @link https://php.net/manual/en/reflectionclass.hasproperty.php @param string $name Name of the property being checked for. @return bool Returns {@see true} if it has the property, otherwise {@see false}
hasProperty
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function getProperty(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $name) : \ReflectionProperty { }
Gets a <b>ReflectionProperty</b> for a class's property @link https://php.net/manual/en/reflectionclass.getproperty.php @param string $name The property name. @return ReflectionProperty A {@see ReflectionProperty} @throws ReflectionException If no property exists by that name.
getProperty
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function getProperties(#[LanguageLevelTypeAware(['8.0' => 'int|null'], default: '')] $filter = null) : array { }
Gets properties @link https://php.net/manual/en/reflectionclass.getproperties.php @param int|null $filter The optional filter, for filtering desired property types. It's configured using the {@see ReflectionProperty} constants, and defaults to all property types. @return ReflectionProperty[]
getProperties
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function getReflectionConstant(string $name) : \ReflectionClassConstant|false { }
Gets a ReflectionClassConstant for a class's property @link https://php.net/manual/en/reflectionclass.getreflectionconstant.php @param string $name The class constant name. @return ReflectionClassConstant|false A {@see ReflectionClassConstant}. @since 7.1
getReflectionConstant
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function getReflectionConstants(#[PhpStormStubsElementAvailable(from: '8.0')] ?int $filter = null) : array { }
Gets class constants @link https://php.net/manual/en/reflectionclass.getreflectionconstants.php @param int|null $filter [optional] allows the filtering of constants defined in a class by their visibility. Since 8.0. @return ReflectionClassConstant[] An array of ReflectionClassConstant objects. @since 7.1
getReflectionConstants
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[TentativeType] public function hasConstant(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $name) : bool { }
Checks if constant is defined @link https://php.net/manual/en/reflectionclass.hasconstant.php @param string $name The name of the constant being checked for. @return bool Returns {@see true} if the constant is defined, otherwise {@see false}
hasConstant
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function getConstants(#[PhpStormStubsElementAvailable(from: '8.0')] ?int $filter = null) : array { }
Gets constants @link https://php.net/manual/en/reflectionclass.getconstants.php @param int|null $filter [optional] allows the filtering of constants defined in a class by their visibility. Since 8.0. @return array An array of constants, where the keys hold the name and the values the value of the constants.
getConstants
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function getConstant(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $name) : mixed { }
Gets defined constant @link https://php.net/manual/en/reflectionclass.getconstant.php @param string $name Name of the constant. @return mixed|false Value of the constant with the name name. Returns {@see false} if the constant was not found in the class.
getConstant
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function getInterfaces() : array { }
Gets the interfaces @link https://php.net/manual/en/reflectionclass.getinterfaces.php @return ReflectionClass[] An associative array of interfaces, with keys as interface names and the array values as {@see ReflectionClass} objects.
getInterfaces
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function getInterfaceNames() : array { }
Gets the interface names @link https://php.net/manual/en/reflectionclass.getinterfacenames.php @return string[] A numerical array with interface names as the values.
getInterfaceNames
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function isAnonymous() : bool { }
Checks if the class is anonymous @link https://php.net/manual/en/reflectionclass.isanonymous.php @return bool Returns {@see true} on success or {@see false} on failure. @since 7.0
isAnonymous
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function isInterface() : bool { }
Checks if the class is an interface @link https://php.net/manual/en/reflectionclass.isinterface.php @return bool Returns {@see true} on success or {@see false} on failure.
isInterface
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function getTraits() : array { }
Returns an array of traits used by this class @link https://php.net/manual/en/reflectionclass.gettraits.php @return ReflectionClass[] an array with trait names in keys and instances of trait's {@see ReflectionClass} in values. @since 5.4
getTraits
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function getTraitNames() : array { }
Returns an array of names of traits used by this class @link https://php.net/manual/en/reflectionclass.gettraitnames.php @return string[] An array with trait names in values. Returns {@see null} in case of an error. @since 5.4
getTraitNames
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function getTraitAliases() : array { }
Returns an array of trait aliases @link https://php.net/manual/en/reflectionclass.gettraitaliases.php @return string[] an array with new method names in keys and original names (in the format "TraitName::original") in values. Returns {@see null} in case of an error. @since 5.4
getTraitAliases
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function isTrait() : bool { }
Returns whether this is a trait @link https://php.net/manual/en/reflectionclass.istrait.php @return bool Returns {@see true} if this is a trait, {@see false} otherwise. Returns {@see null} in case of an error. @since 5.4
isTrait
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function isAbstract() : bool { }
Checks if class is abstract @link https://php.net/manual/en/reflectionclass.isabstract.php @return bool Returns {@see true} on success or {@see false} on failure.
isAbstract
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function isFinal() : bool { }
Checks if class is final @link https://php.net/manual/en/reflectionclass.isfinal.php @return bool Returns {@see true} on success or {@see false} on failure.
isFinal
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function getModifiers() : int { }
Gets modifiers @link https://php.net/manual/en/reflectionclass.getmodifiers.php @return int bitmask of modifier constants.
getModifiers
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function isInstance(#[LanguageLevelTypeAware(['8.0' => 'object'], default: '')] $object) : bool { }
Checks class for instance @link https://php.net/manual/en/reflectionclass.isinstance.php @param object $object The object being compared to. @return bool Returns {@see true} on success or {@see false} on failure.
isInstance
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[TentativeType] public function newInstanceArgs(array $args = []) : ?object { }
Creates a new class instance from given arguments. @link https://php.net/manual/en/reflectionclass.newinstanceargs.php @param array $args The parameters to be passed to the class constructor as an array. @return T|null a new instance of the class. @throws ReflectionException if the class constructor is not public or if the class does not have a constructor and the $args parameter contains one or more parameters. @since 5.1.3
newInstanceArgs
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function getParentClass() : \ReflectionClass|false { }
Gets parent class @link https://php.net/manual/en/reflectionclass.getparentclass.php @return ReflectionClass|false A {@see ReflectionClass} or {@see false} if there's no parent.
getParentClass
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function isSubclassOf(#[LanguageLevelTypeAware(['8.0' => 'ReflectionClass|string'], default: '')] $class) : bool { }
Checks if a subclass @link https://php.net/manual/en/reflectionclass.issubclassof.php @param string|ReflectionClass $class Either the name of the class as string or a {@see ReflectionClass} object of the class to check against. @return bool {@see true} on success or {@see false} on failure.
isSubclassOf
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] #[LanguageLevelTypeAware(['8.3' => 'array'], default: 'array|null')] public function getStaticProperties() { }
Gets static properties @link https://php.net/manual/en/reflectionclass.getstaticproperties.php @return array|null The static properties, as an array where the keys hold the name and the values the value of the properties.
getStaticProperties
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[TentativeType] public function setStaticPropertyValue(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $name, #[LanguageLevelTypeAware(['8.0' => 'mixed'], default: '')] $value) : void { }
Sets static property value @link https://php.net/manual/en/reflectionclass.setstaticpropertyvalue.php @param string $name Property name. @param mixed $value New property value. @return void No value is returned.
setStaticPropertyValue
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function getDefaultProperties() : array { }
Gets default properties @link https://php.net/manual/en/reflectionclass.getdefaultproperties.php @return mixed[] An array of default properties, with the key being the name of the property and the value being the default value of the property or {@see null} if the property doesn't have a default value. The function does not distinguish between static and non static properties and does not take visibility modifiers into account.
getDefaultProperties
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function isIterateable() : bool { }
An alias of {@see ReflectionClass::isIterable} method. @link https://php.net/manual/en/reflectionclass.isiterateable.php @return bool Returns {@see true} on success or {@see false} on failure.
isIterateable
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function isIterable() : bool { }
Check whether this class is iterable @link https://php.net/manual/en/reflectionclass.isiterable.php @return bool Returns {@see true} on success or {@see false} on failure. @since 7.2
isIterable
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[TentativeType] public function implementsInterface(#[LanguageLevelTypeAware(['8.0' => 'ReflectionClass|string'], default: '')] $interface) : bool { }
Checks whether it implements an interface. @link https://php.net/manual/en/reflectionclass.implementsinterface.php @param string $interface The interface name. @return bool Returns {@see true} on success or {@see false} on failure.
implementsInterface
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function getExtension() : ?\ReflectionExtension { }
Gets a <b>ReflectionExtension</b> object for the extension which defined the class @link https://php.net/manual/en/reflectionclass.getextension.php @return ReflectionExtension|null A {@see ReflectionExtension} object representing the extension which defined the class, or {@see null} for user-defined classes.
getExtension
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function getExtensionName() : string|false { }
Gets the name of the extension which defined the class @link https://php.net/manual/en/reflectionclass.getextensionname.php @return string|false The name of the extension which defined the class, or {@see false} for user-defined classes.
getExtensionName
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[TentativeType] public function inNamespace() : bool { }
Checks if in namespace @link https://php.net/manual/en/reflectionclass.innamespace.php @return bool {@see true} on success or {@see false} on failure.
inNamespace
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function getNamespaceName() : string { }
Gets namespace name @link https://php.net/manual/en/reflectionclass.getnamespacename.php @return string The namespace name.
getNamespaceName
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function getShortName() : string { }
Gets short name @link https://php.net/manual/en/reflectionclass.getshortname.php @return string The class short name.
getShortName
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[PhpStormStubsElementAvailable(from: "5.4", to: "8.0")] private final function __clone() : void { }
Clones object @link https://php.net/manual/en/reflectionclass.clone.php @return void
__clone
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[PhpStormStubsElementAvailable(from: "8.1")] private function __clone() : void { }
Clones object @link https://php.net/manual/en/reflectionclass.clone.php @return void
__clone
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClass.php
MIT
#[Pure] #[TentativeType] public function getDeclaringClass() : \ReflectionClass { }
Gets declaring class @return ReflectionClass @link https://php.net/manual/en/reflectionclassconstant.getdeclaringclass.php @since 7.1
getDeclaringClass
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClassConstant.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClassConstant.php
MIT
#[Pure] #[TentativeType] public function getDocComment() : string|false { }
Gets doc comments @return string|false The doc comment if it exists, otherwise {@see false} @link https://php.net/manual/en/reflectionclassconstant.getdoccomment.php @since 7.1
getDocComment
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClassConstant.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClassConstant.php
MIT
#[Pure] #[TentativeType] public function getModifiers() : int { }
Gets the class constant modifiers @return int A numeric representation of the modifiers. The actual meanings of these modifiers are described in the predefined constants. @link https://php.net/manual/en/reflectionclassconstant.getmodifiers.php @since 7.1
getModifiers
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClassConstant.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClassConstant.php
MIT
#[Pure] #[TentativeType] public function getName() : string { }
Get name of the constant @link https://php.net/manual/en/reflectionclassconstant.getname.php @return string Returns the constant's name. @since 7.1
getName
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClassConstant.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClassConstant.php
MIT
#[Pure] #[TentativeType] public function getValue() : mixed { }
Gets value @link https://php.net/manual/en/reflectionclassconstant.getvalue.php @return mixed The value of the class constant. @since 7.1
getValue
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClassConstant.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClassConstant.php
MIT
#[Pure] #[TentativeType] public function isPrivate() : bool { }
Checks if class constant is private @link https://php.net/manual/en/reflectionclassconstant.isprivate.php @return bool @since 7.1
isPrivate
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClassConstant.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClassConstant.php
MIT
#[Pure] #[TentativeType] public function isProtected() : bool { }
Checks if class constant is protected @link https://php.net/manual/en/reflectionclassconstant.isprotected.php @return bool @since 7.1
isProtected
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClassConstant.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClassConstant.php
MIT
#[Pure] #[TentativeType] public function isPublic() : bool { }
Checks if class constant is public @link https://php.net/manual/en/reflectionclassconstant.ispublic.php @return bool @since 7.1
isPublic
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClassConstant.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClassConstant.php
MIT
#[PhpStormStubsElementAvailable(from: "5.4", to: "8.0")] private final function __clone() : void { }
ReflectionClassConstant cannot be cloned @return void
__clone
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClassConstant.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClassConstant.php
MIT
#[PhpStormStubsElementAvailable(from: "8.1")] private function __clone() : void { }
ReflectionClassConstant cannot be cloned @return void
__clone
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClassConstant.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionClassConstant.php
MIT
#[TentativeType] public function __toString() : string { }
To string @link https://php.net/manual/en/reflectionextension.tostring.php @return string the exported extension as a string, in the same way as the {@see ReflectionExtension::export()}.
__toString
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionExtension.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionExtension.php
MIT
#[Pure] #[TentativeType] public function getName() : string { }
Gets extension name @link https://php.net/manual/en/reflectionextension.getname.php @return string The extensions name.
getName
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionExtension.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionExtension.php
MIT
#[Pure] #[TentativeType] public function getVersion() : ?string { }
Gets extension version @link https://php.net/manual/en/reflectionextension.getversion.php @return string|null The version of the extension.
getVersion
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionExtension.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionExtension.php
MIT