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
#[Pure] #[TentativeType] public function getFunctions() : array { }
Gets extension functions @link https://php.net/manual/en/reflectionextension.getfunctions.php @return ReflectionFunction[] An associative array of {@see ReflectionFunction} objects, for each function defined in the extension with the keys being the function names. If no function are defined, an empty array is returned.
getFunctions
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 getConstants() : array { }
Gets constants @link https://php.net/manual/en/reflectionextension.getconstants.php @return array An associative array with constant names as keys.
getConstants
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 getINIEntries() : array { }
Gets extension ini entries @link https://php.net/manual/en/reflectionextension.getinientries.php @return array An associative array with the ini entries as keys, with their defined values as values.
getINIEntries
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 getClasses() : array { }
Gets classes @link https://php.net/manual/en/reflectionextension.getclasses.php @return ReflectionClass[] An array of {@see ReflectionClass} objects, one for each class within the extension. If no classes are defined, an empty array is returned.
getClasses
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 getClassNames() : array { }
Gets class names @link https://php.net/manual/en/reflectionextension.getclassnames.php @return string[] An array of class names, as defined in the extension. If no classes are defined, an empty array is returned.
getClassNames
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 getDependencies() : array { }
Gets dependencies @link https://php.net/manual/en/reflectionextension.getdependencies.php @return string[] An associative array with dependencies as keys and either Required, Optional or Conflicts as the values.
getDependencies
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
#[TentativeType] public function info() : void { }
Print extension info @link https://php.net/manual/en/reflectionextension.info.php @return void Print extension info
info
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 isPersistent() : bool { }
Returns whether this extension is persistent @link https://php.net/manual/en/reflectionextension.ispersistent.php @return bool Returns {@see true} for extensions loaded by extension, {@see false} otherwise. @since 5.4
isPersistent
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 isTemporary() : bool { }
Returns whether this extension is temporary @link https://php.net/manual/en/reflectionextension.istemporary.php @return bool Returns {@see true} for extensions loaded by {@see dl()}, {@see false} otherwise. @since 5.4
isTemporary
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
#[PhpStormStubsElementAvailable(from: "5.4", to: "8.0")] private final function __clone() : void { }
Clones @link https://php.net/manual/en/reflectionextension.clone.php @return void No value is returned, if called a fatal error will occur.
__clone
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
#[PhpStormStubsElementAvailable(from: "8.1")] private function __clone() : void { }
Clones @link https://php.net/manual/en/reflectionextension.clone.php @return void No value is returned, if called a fatal error will occur.
__clone
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
#[TentativeType] public function __toString() : string { }
Returns the string representation of the ReflectionFunction object. @link https://php.net/manual/en/reflectionfunction.tostring.php
__toString
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunction.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunction.php
MIT
#[Deprecated(since: '8.0')] #[Pure] #[TentativeType] public function isDisabled() : bool { }
Checks if function is disabled @link https://php.net/manual/en/reflectionfunction.isdisabled.php @return bool {@see true} if it's disable, otherwise {@see false}
isDisabled
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunction.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunction.php
MIT
#[TentativeType] public function invoke(#[LanguageLevelTypeAware(['8.0' => 'mixed'], default: '')] ...$args) : mixed { }
Invokes function @link https://www.php.net/manual/en/reflectionfunction.invoke.php @param mixed ...$args [optional] The passed in argument list. It accepts a variable number of arguments which are passed to the function much like {@see call_user_func} is. @return mixed Returns the result of the invoked function call.
invoke
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunction.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunction.php
MIT
#[TentativeType] public function invokeArgs(array $args) : mixed { }
Invokes function args @link https://php.net/manual/en/reflectionfunction.invokeargs.php @param array $args The passed arguments to the function as an array, much like {@see call_user_func_array} works. @return mixed the result of the invoked function
invokeArgs
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunction.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunction.php
MIT
#[Pure] #[TentativeType] public function getClosure() : \Closure { }
Returns a dynamically created closure for the function @link https://php.net/manual/en/reflectionfunction.getclosure.php @return Closure|null Returns {@see Closure} or {@see null} in case of an error.
getClosure
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunction.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunction.php
MIT
#[PhpStormStubsElementAvailable(from: "5.4", to: "8.0")] private final function __clone() : void { }
Clones function @link https://php.net/manual/en/reflectionfunctionabstract.clone.php @return void
__clone
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
MIT
#[PhpStormStubsElementAvailable(from: "8.1")] private function __clone() : void { }
Clones function @link https://php.net/manual/en/reflectionfunctionabstract.clone.php @return void
__clone
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
MIT
#[TentativeType] public function inNamespace() : bool { }
Checks if function in namespace @link https://php.net/manual/en/reflectionfunctionabstract.innamespace.php @return bool {@see true} if it's in a namespace, otherwise {@see false}
inNamespace
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
MIT
#[Pure] #[TentativeType] public function isClosure() : bool { }
Checks if closure @link https://php.net/manual/en/reflectionfunctionabstract.isclosure.php @return bool {@see true} if it's a closure, otherwise {@see false}
isClosure
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
MIT
#[Pure] #[TentativeType] public function isDeprecated() : bool { }
Checks if deprecated @link https://php.net/manual/en/reflectionfunctionabstract.isdeprecated.php @return bool {@see true} if it's deprecated, otherwise {@see false}
isDeprecated
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
MIT
#[Pure] #[TentativeType] public function isInternal() : bool { }
Checks if is internal @link https://php.net/manual/en/reflectionfunctionabstract.isinternal.php @return bool {@see true} if it's internal, otherwise {@see false}
isInternal
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
MIT
#[Pure] #[TentativeType] public function isUserDefined() : bool { }
Checks if user defined @link https://php.net/manual/en/reflectionfunctionabstract.isuserdefined.php @return bool {@see true} if it's user-defined, otherwise {@see false}
isUserDefined
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
MIT
#[Pure] #[TentativeType] public function isGenerator() : bool { }
Returns whether this function is a generator @link https://php.net/manual/en/reflectionfunctionabstract.isgenerator.php @return bool {@see true} if the function is generator, otherwise {@see false} @since 5.5
isGenerator
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
MIT
#[Pure] #[TentativeType] public function isVariadic() : bool { }
Returns whether this function is variadic @link https://php.net/manual/en/reflectionfunctionabstract.isvariadic.php @return bool {@see true} if the function is variadic, otherwise {@see false} @since 5.6
isVariadic
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
MIT
#[Pure] #[TentativeType] public function getClosureThis() : ?object { }
Returns this pointer bound to closure @link https://php.net/manual/en/reflectionfunctionabstract.getclosurethis.php @return object|null Returns $this pointer or {@see null} in case of an error.
getClosureThis
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
MIT
#[Pure] #[TentativeType] public function getClosureScopeClass() : ?\ReflectionClass { }
Returns the scope associated to the closure @link https://php.net/manual/en/reflectionfunctionabstract.getclosurescopeclass.php @return ReflectionClass|null Returns the class on success or {@see null} on failure. @since 5.4
getClosureScopeClass
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
MIT
#[Pure] #[TentativeType] public function getClosureCalledClass() : ?\ReflectionClass { }
@return ReflectionClass|null Returns the class on success or {@see null} on failure. @since 8.0
getClosureCalledClass
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
MIT
#[Pure] #[TentativeType] public function getDocComment() : string|false { }
Gets doc comment @link https://php.net/manual/en/reflectionfunctionabstract.getdoccomment.php @return string|false The doc comment if it exists, otherwise {@see false}
getDocComment
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
MIT
#[Pure] #[TentativeType] public function getEndLine() : int|false { }
Gets end line number @link https://php.net/manual/en/reflectionfunctionabstract.getendline.php @return int|false The ending line number of the user defined function, or {@see false} if unknown.
getEndLine
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
MIT
#[Pure] #[TentativeType] public function getExtension() : ?\ReflectionExtension { }
Gets extension info @link https://php.net/manual/en/reflectionfunctionabstract.getextension.php @return ReflectionExtension|null The extension information, as a {@see ReflectionExtension} object or {@see null} instead.
getExtension
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
MIT
#[Pure] #[TentativeType] public function getExtensionName() : string|false { }
Gets extension name @link https://php.net/manual/en/reflectionfunctionabstract.getextensionname.php @return string|false The extension's name or {@see false} instead.
getExtensionName
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
MIT
#[Pure] #[TentativeType] public function getFileName() : string|false { }
Gets file name @link https://php.net/manual/en/reflectionfunctionabstract.getfilename.php @return string|false The file name or {@see false} in case of error.
getFileName
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
MIT
#[Pure] #[TentativeType] public function getName() : string { }
Gets function name @link https://php.net/manual/en/reflectionfunctionabstract.getname.php @return string The name of the function.
getName
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
MIT
#[Pure] #[TentativeType] public function getNamespaceName() : string { }
Gets namespace name @link https://php.net/manual/en/reflectionfunctionabstract.getnamespacename.php @return string The namespace name.
getNamespaceName
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
MIT
#[Pure] #[TentativeType] public function getNumberOfParameters() : int { }
Gets number of parameters @link https://php.net/manual/en/reflectionfunctionabstract.getnumberofparameters.php @return int The number of parameters. @since 5.0.3
getNumberOfParameters
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
MIT
#[Pure] #[TentativeType] public function getNumberOfRequiredParameters() : int { }
Gets number of required parameters @link https://php.net/manual/en/reflectionfunctionabstract.getnumberofrequiredparameters.php @return int The number of required parameters. @since 5.0.3
getNumberOfRequiredParameters
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
MIT
#[Pure] #[TentativeType] public function getParameters() : array { }
Gets parameters @link https://php.net/manual/en/reflectionfunctionabstract.getparameters.php @return ReflectionParameter[] The parameters, as a ReflectionParameter objects.
getParameters
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
MIT
#[Pure] #[LanguageLevelTypeAware(['7.1' => 'ReflectionNamedType|null', '8.0' => 'ReflectionNamedType|ReflectionUnionType|null', '8.1' => 'ReflectionNamedType|ReflectionUnionType|ReflectionIntersectionType|null'], default: 'ReflectionType|null')] #[TentativeType] public function getReturnType() : ?\ReflectionType { }
Gets the specified return type of a function @link https://php.net/manual/en/reflectionfunctionabstract.getreturntype.php @return ReflectionType|null Returns a {@see ReflectionType} object if a return type is specified, {@see null} otherwise. @since 7.0
getReturnType
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
MIT
#[Pure] #[TentativeType] public function getShortName() : string { }
Gets function short name @link https://php.net/manual/en/reflectionfunctionabstract.getshortname.php @return string The short name of the function.
getShortName
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
MIT
#[Pure] #[TentativeType] public function getStartLine() : int|false { }
Gets starting line number @link https://php.net/manual/en/reflectionfunctionabstract.getstartline.php @return int|false The starting line number or {@see false} if unknown.
getStartLine
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
MIT
#[Pure] #[TentativeType] public function getStaticVariables() : array { }
Gets static variables @link https://php.net/manual/en/reflectionfunctionabstract.getstaticvariables.php @return array An array of static variables.
getStaticVariables
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
MIT
#[TentativeType] public function returnsReference() : bool { }
Checks if returns reference @link https://php.net/manual/en/reflectionfunctionabstract.returnsreference.php @return bool {@see true} if it returns a reference, otherwise {@see false}
returnsReference
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
MIT
#[TentativeType] public function hasReturnType() : bool { }
Checks if the function has a specified return type @link https://php.net/manual/en/reflectionfunctionabstract.hasreturntype.php @return bool Returns {@see true} if the function is a specified return type, otherwise {@see false}. @since 7.0
hasReturnType
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionFunctionAbstract.php
MIT
#[Pure] #[TentativeType] public function getExecutingLine() : int { }
Gets the currently executing line of the generator @link https://php.net/manual/en/reflectiongenerator.getexecutingline.php @return int Returns the line number of the currently executing statement in the generator. @since 7.0
getExecutingLine
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionGenerator.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionGenerator.php
MIT
#[Pure] #[TentativeType] public function getExecutingFile() : string { }
Gets the file name of the currently executing generator @link https://php.net/manual/en/reflectiongenerator.getexecutingfile.php @return string Returns the full path and file name of the currently executing generator. @since 7.0
getExecutingFile
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionGenerator.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionGenerator.php
MIT
#[Pure] #[TentativeType] public function getTrace(int $options = \DEBUG_BACKTRACE_PROVIDE_OBJECT) : array { }
Gets the trace of the executing generator @link https://php.net/manual/en/reflectiongenerator.gettrace.php @param int $options The value of <em>options</em> can be any of the following the following flags. Available options: {@see DEBUG_BACKTRACE_PROVIDE_OBJECT} - Default {@see DEBUG_BACKTRACE_IGNORE_ARGS} - Don't include the argument information for functions in the stack trace. @return array Returns the trace of the currently executing generator. @since 7.0
getTrace
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionGenerator.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionGenerator.php
MIT
#[Pure] #[TentativeType] public function getFunction() : \ReflectionFunctionAbstract { }
Gets the function name of the generator @link https://php.net/manual/en/reflectiongenerator.getfunction.php @return ReflectionFunctionAbstract Returns a {@see ReflectionFunctionAbstract} class. This will be {@see ReflectionFunction} for functions, or {@see ReflectionMethod} for methods. @since 7.0
getFunction
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionGenerator.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionGenerator.php
MIT
#[Pure] #[TentativeType] public function getThis() : ?object { }
Gets the function name of the generator @link https://php.net/manual/en/reflectiongenerator.getthis.php @return object|null Returns the $this value, or {@see null} if the generator was not created in a class context. @since 7.0
getThis
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionGenerator.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionGenerator.php
MIT
#[Pure] #[TentativeType] public function getExecutingGenerator() : \Generator { }
Gets the executing Generator object @link https://php.net/manual/en/reflectiongenerator.construct.php @return Generator Returns the currently executing Generator object. @since 7.0
getExecutingGenerator
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionGenerator.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionGenerator.php
MIT
#[TentativeType] public function __toString() : string { }
Returns the string representation of the ReflectionMethod object. @link https://php.net/manual/en/reflectionmethod.tostring.php @return string A string representation of this {@see ReflectionMethod} instance.
__toString
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionMethod.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionMethod.php
MIT
#[Pure] #[TentativeType] public function isPublic() : bool { }
Checks if method is public @link https://php.net/manual/en/reflectionmethod.ispublic.php @return bool Returns {@see true} if the method is public, otherwise {@see false}
isPublic
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionMethod.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionMethod.php
MIT
#[Pure] #[TentativeType] public function isPrivate() : bool { }
Checks if method is private @link https://php.net/manual/en/reflectionmethod.isprivate.php @return bool Returns {@see true} if the method is private, otherwise {@see false}
isPrivate
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionMethod.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionMethod.php
MIT
#[Pure] #[TentativeType] public function isProtected() : bool { }
Checks if method is protected @link https://php.net/manual/en/reflectionmethod.isprotected.php @return bool Returns {@see true} if the method is protected, otherwise {@see false}
isProtected
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionMethod.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionMethod.php
MIT
#[Pure] #[TentativeType] public function isAbstract() : bool { }
Checks if method is abstract @link https://php.net/manual/en/reflectionmethod.isabstract.php @return bool Returns {@see true} if the method is abstract, otherwise {@see false}
isAbstract
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionMethod.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionMethod.php
MIT
#[Pure] #[TentativeType] public function isFinal() : bool { }
Checks if method is final @link https://php.net/manual/en/reflectionmethod.isfinal.php @return bool Returns {@see true} if the method is final, otherwise {@see false}
isFinal
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionMethod.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionMethod.php
MIT
#[Pure] #[TentativeType] public function isStatic() : bool { }
Checks if method is static @link https://php.net/manual/en/reflectionmethod.isstatic.php @return bool Returns {@see true} if the method is static, otherwise {@see false}
isStatic
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionMethod.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionMethod.php
MIT
#[Pure] #[TentativeType] public function isConstructor() : bool { }
Checks if method is a constructor @link https://php.net/manual/en/reflectionmethod.isconstructor.php @return bool Returns {@see true} if the method is a constructor, otherwise {@see false}
isConstructor
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionMethod.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionMethod.php
MIT
#[Pure] #[TentativeType] public function isDestructor() : bool { }
Checks if method is a destructor @link https://php.net/manual/en/reflectionmethod.isdestructor.php @return bool Returns {@see true} if the method is a destructor, otherwise {@see false}
isDestructor
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionMethod.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionMethod.php
MIT
#[Pure] #[TentativeType] public function getClosure(#[PhpStormStubsElementAvailable(from: '5.3', to: '7.3')] $object, #[PhpStormStubsElementAvailable(from: '7.4')] #[LanguageLevelTypeAware(['8.0' => 'object|null'], default: '')] $object = null) : \Closure { }
Returns a dynamically created closure for the method @link https://php.net/manual/en/reflectionmethod.getclosure.php @param object $object Forbidden for static methods, required for other methods or nothing. @return Closure|null Returns {@see Closure} or {@see null} in case of an error. @since 5.4
getClosure
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionMethod.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionMethod.php
MIT
#[Pure] #[TentativeType] public function getModifiers() : int { }
Gets the method modifiers @link https://php.net/manual/en/reflectionmethod.getmodifiers.php @return int A numeric representation of the modifiers. The modifiers are listed below. The actual meanings of these modifiers are described in the predefined constants. ReflectionMethod modifiers: - {@see ReflectionMethod::IS_STATIC} - Indicates that the method is static. - {@see ReflectionMethod::IS_PUBLIC} - Indicates that the method is public. - {@see ReflectionMethod::IS_PROTECTED} - Indicates that the method is protected. - {@see ReflectionMethod::IS_PRIVATE} - Indicates that the method is private. - {@see ReflectionMethod::IS_ABSTRACT} - Indicates that the method is abstract. - {@see ReflectionMethod::IS_FINAL} - Indicates that the method is final.
getModifiers
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionMethod.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionMethod.php
MIT
#[TentativeType] public function invokeArgs(#[LanguageLevelTypeAware(['8.0' => 'object|null'], default: '')] $object, array $args) : mixed { }
Invokes the reflected method and pass its arguments as array. @link https://php.net/manual/en/reflectionmethod.invokeargs.php @param object|null $object The object to invoke the method on. In case of static methods, you can pass {@see null} to this parameter. @param array $args The parameters to be passed to the function, as an {@see array}. @return mixed the method result. @throws ReflectionException if the object parameter does not contain an instance of the class that this method was declared in or the method invocation failed.
invokeArgs
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionMethod.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionMethod.php
MIT
#[Pure] #[TentativeType] public function getDeclaringClass() : \ReflectionClass { }
Gets declaring class for the reflected method. @link https://php.net/manual/en/reflectionmethod.getdeclaringclass.php @return ReflectionClass A {@see ReflectionClass} object of the class that the reflected method is part of.
getDeclaringClass
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionMethod.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionMethod.php
MIT
#[Pure] #[TentativeType] public function getPrototype() : \ReflectionMethod { }
Gets the method prototype (if there is one). @link https://php.net/manual/en/reflectionmethod.getprototype.php @return ReflectionMethod A {@see ReflectionMethod} instance of the method prototype. @throws ReflectionException if the method does not have a prototype
getPrototype
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionMethod.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionMethod.php
MIT
#[PhpStormStubsElementAvailable(to: "8.0")] #[TentativeType] public function setAccessible(#[LanguageLevelTypeAware(['8.0' => 'bool'], default: '')] $accessible) : void { }
Set method accessibility @link https://php.net/manual/en/reflectionmethod.setaccessible.php @param bool $accessible {@see true} to allow accessibility, or {@see false} @return void No value is returned. @since 5.3.2
setAccessible
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionMethod.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionMethod.php
MIT
#[Pure] #[PhpStormStubsElementAvailable(from: "8.1")] #[TentativeType] public function setAccessible(bool $accessible) : void { }
Set method accessibility This method is no-op starting from PHP 8.1 @link https://php.net/manual/en/reflectionmethod.setaccessible.php @param bool $accessible {@see true} to allow accessibility, or {@see false} @return void No value is returned.
setAccessible
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionMethod.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionMethod.php
MIT
#[Pure] public function getName() { }
Get the text of the type hint. @link https://php.net/manual/en/reflectionnamedtype.getname.php @return string Returns the text of the type hint. @since 7.1
getName
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionNamedType.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionNamedType.php
MIT
#[Pure] #[TentativeType] public function isBuiltin() : bool { }
Checks if it is a built-in type @link https://php.net/manual/en/reflectionnamedtype.isbuiltin.php @return bool Returns {@see true} if it's a built-in type, otherwise {@see false} @since 7.1 overrides the parent {@see ReflectionType::isBuiltin()} method. @since 8.0 method was removed from the parent {@see ReflectionType} class.
isBuiltin
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionNamedType.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionNamedType.php
MIT
#[TentativeType] public function __toString() : string { }
Returns the string representation of the ReflectionParameter object. @link https://php.net/manual/en/reflectionparameter.tostring.php @return string
__toString
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
MIT
#[Pure] #[TentativeType] public function getName() : string { }
Gets parameter name @link https://php.net/manual/en/reflectionparameter.getname.php @return string The name of the reflected parameter.
getName
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
MIT
#[Pure] #[TentativeType] public function isPassedByReference() : bool { }
Checks if passed by reference @link https://php.net/manual/en/reflectionparameter.ispassedbyreference.php @return bool {@see true} if the parameter is passed in by reference, otherwise {@see false}
isPassedByReference
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
MIT
#[TentativeType] public function canBePassedByValue() : bool { }
Returns whether this parameter can be passed by value @link https://php.net/manual/en/reflectionparameter.canbepassedbyvalue.php @return bool|null {@see true} if the parameter can be passed by value, {@see false} otherwise. Returns {@see null} in case of an error. @since 5.4
canBePassedByValue
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
MIT
#[Pure] #[TentativeType] public function getDeclaringFunction() : \ReflectionFunctionAbstract { }
Gets declaring function @link https://php.net/manual/en/reflectionparameter.getdeclaringfunction.php @return ReflectionFunctionAbstract A {@see ReflectionFunctionAbstract} object. @since 5.2.3
getDeclaringFunction
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
MIT
#[Pure] #[TentativeType] public function getDeclaringClass() : ?\ReflectionClass { }
Gets declaring class @link https://php.net/manual/en/reflectionparameter.getdeclaringclass.php @return ReflectionClass|null A {@see ReflectionClass} object or {@see null} if called on function.
getDeclaringClass
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
MIT
#[Deprecated(reason: "Use ReflectionParameter::getType() and the ReflectionType APIs should be used instead.", since: "8.0")] #[Pure] #[TentativeType] public function getClass() : ?\ReflectionClass { }
Gets the class type hinted for the parameter as a ReflectionClass object. @link https://php.net/manual/en/reflectionparameter.getclass.php @return ReflectionClass|null A {@see ReflectionClass} object. @see ReflectionParameter::getType()
getClass
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
MIT
#[TentativeType] public function hasType() : bool { }
Checks if the parameter has a type associated with it. @link https://php.net/manual/en/reflectionparameter.hastype.php @return bool {@see true} if a type is specified, {@see false} otherwise. @since 7.0
hasType
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
MIT
#[Pure] #[LanguageLevelTypeAware(['7.1' => 'ReflectionNamedType|null', '8.0' => 'ReflectionNamedType|ReflectionUnionType|null', '8.1' => 'ReflectionNamedType|ReflectionUnionType|ReflectionIntersectionType|null'], default: 'ReflectionType|null')] #[TentativeType] public function getType() : ?\ReflectionType { }
Gets a parameter's type @link https://php.net/manual/en/reflectionparameter.gettype.php @return ReflectionType|null Returns a {@see ReflectionType} object if a parameter type is specified, {@see null} otherwise. @since 7.0
getType
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
MIT
#[Deprecated(reason: "Use ReflectionParameter::getType() and the ReflectionType APIs should be used instead.", since: "8.0")] #[Pure] #[TentativeType] public function isArray() : bool { }
Checks if parameter expects an array @link https://php.net/manual/en/reflectionparameter.isarray.php @return bool {@see true} if an array is expected, {@see false} otherwise. @see ReflectionParameter::getType()
isArray
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
MIT
#[Deprecated(reason: "Use ReflectionParameter::getType() and the ReflectionType APIs should be used instead.", since: "8.0")] #[Pure] #[TentativeType] public function isCallable() : bool { }
Returns whether parameter MUST be callable @link https://php.net/manual/en/reflectionparameter.iscallable.php @return bool|null Returns {@see true} if the parameter is callable, {@see false} if it is not or {@see null} on failure. @since 5.4 @see ReflectionParameter::getType()
isCallable
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
MIT
#[TentativeType] public function allowsNull() : bool { }
Checks if null is allowed @link https://php.net/manual/en/reflectionparameter.allowsnull.php @return bool Returns {@see true} if {@see null} is allowed, otherwise {@see false}
allowsNull
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
MIT
#[Pure] #[TentativeType] public function getPosition() : int { }
Gets parameter position @link https://php.net/manual/en/reflectionparameter.getposition.php @return int The position of the parameter, left to right, starting at position #0. @since 5.2.3
getPosition
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
MIT
#[Pure] #[TentativeType] public function isOptional() : bool { }
Checks if optional @link https://php.net/manual/en/reflectionparameter.isoptional.php @return bool Returns {@see true} if the parameter is optional, otherwise {@see false} @since 5.0.3
isOptional
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
MIT
#[Pure] #[TentativeType] public function isDefaultValueAvailable() : bool { }
Checks if a default value is available @link https://php.net/manual/en/reflectionparameter.isdefaultvalueavailable.php @return bool Returns {@see true} if a default value is available, otherwise {@see false} @since 5.0.3
isDefaultValueAvailable
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
MIT
#[Pure] #[TentativeType] public function getDefaultValue() : mixed { }
Gets default parameter value @link https://php.net/manual/en/reflectionparameter.getdefaultvalue.php @return mixed The parameters default value. @throws ReflectionException if the parameter is not optional @since 5.0.3
getDefaultValue
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
MIT
#[Pure] #[TentativeType] public function isDefaultValueConstant() : bool { }
Returns whether the default value of this parameter is constant @link https://php.net/manual/en/reflectionparameter.isdefaultvalueconstant.php @return bool Returns {@see true} if the default value is constant, and {@see false} otherwise. @since 5.4.6
isDefaultValueConstant
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
MIT
#[Pure] #[TentativeType] public function getDefaultValueConstantName() : ?string { }
Returns the default value's constant name if default value is constant or null @link https://php.net/manual/en/reflectionparameter.getdefaultvalueconstantname.php @return string|null Returns string on success or {@see null} on failure. @throws ReflectionException if the parameter is not optional @since 5.4.6
getDefaultValueConstantName
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
MIT
#[Pure] #[TentativeType] public function isVariadic() : bool { }
Returns whether this function is variadic @link https://php.net/manual/en/reflectionparameter.isvariadic.php @return bool Returns {@see true} if the function is variadic, otherwise {@see false} @since 5.6
isVariadic
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
MIT
#[Pure] public function isPromoted() : bool { }
Returns information about whether the parameter is a promoted. @return bool Returns {@see true} if the parameter promoted or {@see false} instead @since 8.0
isPromoted
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
MIT
#[PhpStormStubsElementAvailable(from: "5.4", to: "8.0")] private final function __clone() : void { }
Clone @link https://php.net/manual/en/reflectionparameter.clone.php @return void
__clone
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
MIT
#[PhpStormStubsElementAvailable(from: "8.1")] private function __clone() : void { }
Clone @link https://php.net/manual/en/reflectionparameter.clone.php @return void
__clone
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionParameter.php
MIT
#[TentativeType] public function __toString() : string { }
To string @link https://php.net/manual/en/reflectionproperty.tostring.php @return string
__toString
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
MIT
#[Pure] #[TentativeType] public function getName() : string { }
Gets property name @link https://php.net/manual/en/reflectionproperty.getname.php @return string The name of the reflected property.
getName
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
MIT
#[Pure] #[TentativeType] public function getValue(#[LanguageLevelTypeAware(['8.0' => 'object|null'], default: '')] $object = null) : mixed { }
Gets value @link https://php.net/manual/en/reflectionproperty.getvalue.php @param object|null $object If the property is non-static an object must be provided to fetch the property from. If you want to fetch the default property without providing an object use {@see ReflectionClass::getDefaultProperties} instead. @return mixed The current value of the property.
getValue
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
MIT
#[TentativeType] public function setValue(#[LanguageLevelTypeAware(['8.0' => 'mixed'], default: '')] $objectOrValue, #[LanguageLevelTypeAware(['8.0' => 'mixed'], default: '')] $value) : void { }
Set property value @link https://php.net/manual/en/reflectionproperty.setvalue.php @param mixed $objectOrValue If the property is non-static an object must be provided to change the property on. If the property is static this parameter is left out and only $value needs to be provided. @param mixed $value [optional] The new value. @return void No value is returned.
setValue
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
MIT
#[Pure] #[TentativeType] public function isPublic() : bool { }
Checks if property is public @link https://php.net/manual/en/reflectionproperty.ispublic.php @return bool Return {@see true} if the property is public, {@see false} otherwise.
isPublic
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
MIT
#[Pure] #[TentativeType] public function isPrivate() : bool { }
Checks if property is private @link https://php.net/manual/en/reflectionproperty.isprivate.php @return bool Return {@see true} if the property is private, {@see false} otherwise.
isPrivate
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
MIT
#[Pure] #[TentativeType] public function isProtected() : bool { }
Checks if property is protected @link https://php.net/manual/en/reflectionproperty.isprotected.php @return bool Returns {@see true} if the property is protected, {@see false} otherwise.
isProtected
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
MIT
#[Pure] #[TentativeType] public function isStatic() : bool { }
Checks if property is static @link https://php.net/manual/en/reflectionproperty.isstatic.php @return bool Returns {@see true} if the property is static, {@see false} otherwise.
isStatic
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
MIT
#[Pure] #[TentativeType] public function isDefault() : bool { }
Checks if default value @link https://php.net/manual/en/reflectionproperty.isdefault.php @return bool Returns {@see true} if the property was declared at compile-time, or {@see false} if it was created at run-time.
isDefault
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
MIT
#[Pure] #[TentativeType] public function getModifiers() : int { }
Gets modifiers @link https://php.net/manual/en/reflectionproperty.getmodifiers.php @return int A numeric representation of the modifiers.
getModifiers
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
MIT