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 |
---|---|---|---|---|---|---|---|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function slaves(string $master) : array|false
{
}
|
Show a list of replicas for this master, and their state.
@param string $master
@return array|false
|
slaves
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Sentinel.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Sentinel.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\Local]
public function getLastError() : string|null
{
}
|
Returns the last error message, if any.
@return string|null
|
getLastError
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Sentinel.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Sentinel.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\Local]
public function setOption(int $option, mixed $value) : bool
{
}
|
Sets a client option.
@param int $option
@param mixed $value
@return bool
|
setOption
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Sentinel.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Sentinel.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\Local]
public function getOption(int $option) : mixed
{
}
|
Returns a client option.
@param int $option
@return mixed
|
getOption
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Sentinel.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Sentinel.php
|
MIT
|
#[LanguageLevelTypeAware(['8.0' => 'string|false'], default: 'string')]
function session_name(#[LanguageLevelTypeAware(['8.0' => 'null|string'], default: 'string')] $name)
{
}
|
Get and/or set the current session name.<br/>
Before 7.2.0 checked cookie status and since 7.2.0 checks both cookie and session status to avoid PHP crash.
@link https://php.net/manual/en/function.session-name.php
@param string|null $name [optional] <p>
The session name references the name of the session, which is
used in cookies and URLs (e.g. PHPSESSID). It
should contain only alphanumeric characters; it should be short and
descriptive (i.e. for users with enabled cookie warnings).
If <i>name</i> is specified, the name of the current
session is changed to its value.
</p>
<p>
<p>
The session name can't consist of digits only, at least one letter
must be present. Otherwise a new session id is generated every time.
</p>
</p>
@return string|false the name of the current session.
|
session_name
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/session/session.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/session/session.php
|
MIT
|
#[LanguageLevelTypeAware(['8.0' => 'string|false'], default: 'string')]
function session_module_name(#[LanguageLevelTypeAware(['8.0' => 'null|string'], default: 'string')] $module)
{
}
|
Get and/or set the current session module.<br/>
Since 7.2.0 it is forbidden to set the module name to "user".
@link https://php.net/manual/en/function.session-module-name.php
@param string|null $module [optional] <p>
If <i>module</i> is specified, that module will be
used instead.
</p>
@return string|false the name of the current session module.
|
session_module_name
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/session/session.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/session/session.php
|
MIT
|
#[LanguageLevelTypeAware(['8.0' => 'string|false'], default: 'string')]
function session_save_path(#[LanguageLevelTypeAware(['8.0' => 'null|string'], default: 'string')] $path)
{
}
|
Get and/or set the current session save path
@link https://php.net/manual/en/function.session-save-path.php
@param string|null $path [optional] <p>
Session data path. If specified, the path to which data is saved will
be changed. <b>session_save_path</b> needs to be called
before <b>session_start</b> for that purpose.
</p>
<p>
<p>
On some operating systems, you may want to specify a path on a
filesystem that handles lots of small files efficiently. For example,
on Linux, reiserfs may provide better performance than ext2fs.
</p>
</p>
@return string|false the path of the current directory used for data storage.
|
session_save_path
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/session/session.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/session/session.php
|
MIT
|
#[LanguageLevelTypeAware(['8.0' => 'string|false'], default: 'string')]
function session_id(#[LanguageLevelTypeAware(['8.0' => 'null|string'], default: 'string')] $id)
{
}
|
Get and/or set the current session id
@link https://php.net/manual/en/function.session-id.php
@param string|null $id [optional] <p>
If <i>id</i> is specified, it will replace the current
session id. <b>session_id</b> needs to be called before
<b>session_start</b> for that purpose. Depending on the
session handler, not all characters are allowed within the session id.
For example, the file session handler only allows characters in the
range a-z A-Z 0-9 , (comma) and - (minus)!
</p>
When using session cookies, specifying an <i>id</i>
for <b>session_id</b> will always send a new cookie
when <b>session_start</b> is called, regardless if the
current session id is identical to the one being set.
@return string|false <b>session_id</b> returns the session id for the current
session or the empty string ("") if there is no current
session (no current session id exists).
|
session_id
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/session/session.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/session/session.php
|
MIT
|
#[Deprecated(since: '5.3')]
function session_register(mixed $name, ...$_) : bool
{
}
|
Register one or more global variables with the current session
@link https://php.net/manual/en/function.session-register.php
@param mixed $name <p>
A string holding the name of a variable or an array consisting of
variable names or other arrays.
</p>
@param mixed ...$_ [optional]
@return bool true on success or false on failure.
@removed 5.4
|
session_register
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/session/session.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/session/session.php
|
MIT
|
#[Deprecated(since: '5.3')]
function session_unregister(string $name) : bool
{
}
|
Unregister a global variable from the current session
@link https://php.net/manual/en/function.session-unregister.php
@param string $name <p>
The variable name.
</p>
@return bool true on success or false on failure.
@removed 5.4
|
session_unregister
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/session/session.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/session/session.php
|
MIT
|
#[Deprecated(since: '5.3')]
function session_is_registered(string $name) : bool
{
}
|
Find out whether a global variable is registered in a session
@link https://php.net/manual/en/function.session-is-registered.php
@param string $name <p>
The variable name.
</p>
@return bool <b>session_is_registered</b> returns true if there is a
global variable with the name <i>name</i> registered in
the current session, false otherwise.
@removed 5.4
|
session_is_registered
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/session/session.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/session/session.php
|
MIT
|
#[LanguageLevelTypeAware(["8.0" => "string|false"], default: "string")]
function session_encode()
{
}
|
Encodes the current session data as a string
@link https://php.net/manual/en/function.session-encode.php
@return string|false the contents of the current session encoded.
|
session_encode
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/session/session.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/session/session.php
|
MIT
|
#[LanguageLevelTypeAware(["8.0" => "int|false"], default: "int")]
function session_gc()
{
}
|
Perform session data garbage collection
@return int|false number of deleted session data for success, false for failure.
@since 7.1
|
session_gc
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/session/session.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/session/session.php
|
MIT
|
#[LanguageLevelTypeAware(["7.2" => "bool"], default: "void")]
function session_unset()
{
}
|
Free all session variables
@link https://php.net/manual/en/function.session-unset.php
@return void|bool since 7.2.0 returns true on success or false on failure.
|
session_unset
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/session/session.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/session/session.php
|
MIT
|
#[LanguageLevelTypeAware(["7.2" => "bool"], default: "void")]
function session_set_cookie_params(int $lifetime_or_options, ?string $path = null, ?string $domain = null, ?bool $secure = null, ?bool $httponly = null)
{
}
|
Set the session cookie parameters
@link https://php.net/manual/en/function.session-set-cookie-params.php
@param int $lifetime_or_options <p>
Lifetime of the
session cookie, defined in seconds.
</p>
@param string|null $path [optional] <p>
Path on the domain where
the cookie will work. Use a single slash ('/') for all paths on the
domain.
</p>
@param string|null $domain [optional] <p>
Cookie domain, for
example 'www.php.net'. To make cookies visible on all subdomains then
the domain must be prefixed with a dot like '.php.net'.
</p>
@param bool|null $secure [optional] <p>
If true cookie will only be sent over
secure connections.
</p>
@param bool|null $httponly [optional] <p>
If set to true then PHP will attempt to send the
httponly
flag when setting the session cookie.
</p>
@return void|bool since 7.2.0 returns true on success or false on failure.
|
session_set_cookie_params
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/session/session.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/session/session.php
|
MIT
|
#[ArrayShape(["lifetime" => "int", "path" => "string", "domain" => "string", "secure" => "bool", "httponly" => "bool", "samesite" => "string"])]
function session_get_cookie_params() : array
{
}
|
Get the session cookie parameters
@link https://php.net/manual/en/function.session-get-cookie-params.php
@return array an array with the current session cookie information, the array
contains the following items:
"lifetime" - The
lifetime of the cookie in seconds.
"path" - The path where
information is stored.
"domain" - The domain
of the cookie.
"secure" - The cookie
should only be sent over secure connections.
"httponly" - The
cookie can only be accessed through the HTTP protocol.
|
session_get_cookie_params
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/session/session.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/session/session.php
|
MIT
|
#[LanguageLevelTypeAware(["7.2" => "bool"], default: "void")]
function session_write_close()
{
}
|
Write session data and end session
@link https://php.net/manual/en/function.session-write-close.php
@return void|bool since 7.2.0 returns true on success or false on failure.
|
session_write_close
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/session/session.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/session/session.php
|
MIT
|
#[LanguageLevelTypeAware(["7.2" => "bool"], default: "void")]
function session_abort()
{
}
|
(PHP 5 >= 5.6.0)<br>
Discard session array changes and finish session
@link https://php.net/manual/en/function.session-abort.php
@return void|bool since 7.2.0 returns true if a session was successfully reinitialized or false on failure.
@since 5.6
|
session_abort
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/session/session.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/session/session.php
|
MIT
|
#[LanguageLevelTypeAware(["7.2" => "bool"], default: "void")]
function session_reset()
{
}
|
(PHP 5 >= 5.6.0)<br>
Re-initialize session array with original values
@link https://php.net/manual/en/function.session-reset.php
@return void|bool since 7.2.0 returns true if a session was successfully reinitialized or false on failure.
@since 5.6
|
session_reset
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/session/session.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/session/session.php
|
MIT
|
#[TentativeType]
public function close() : bool
{
}
|
Close the session
@link https://php.net/manual/en/sessionhandler.close.php
@return bool <p>
The return value (usually TRUE on success, FALSE on failure).
Note this value is returned internally to PHP for processing.
</p>
@since 5.4
|
close
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/session/SessionHandler.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/session/SessionHandler.php
|
MIT
|
#[TentativeType]
public function create_sid() : string
{
}
|
Return a new session ID
@link https://php.net/manual/en/sessionhandler.create-sid.php
@return string <p>A session ID valid for the default session handler.</p>
@since 5.5.1
|
create_sid
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/session/SessionHandler.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/session/SessionHandler.php
|
MIT
|
#[TentativeType]
public function destroy(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $id) : bool
{
}
|
Destroy a session
@link https://php.net/manual/en/sessionhandler.destroy.php
@param string $id The session ID being destroyed.
@return bool <p>
The return value (usually TRUE on success, FALSE on failure).
Note this value is returned internally to PHP for processing.
</p>
@since 5.4
|
destroy
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/session/SessionHandler.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/session/SessionHandler.php
|
MIT
|
#[TentativeType]
public function gc(#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $max_lifetime) : int|false
{
}
|
Cleanup old sessions
@link https://php.net/manual/en/sessionhandler.gc.php
@param int $max_lifetime <p>
Sessions that have not updated for
the last maxlifetime seconds will be removed.
</p>
@return int|bool <p>
The return value (usually TRUE on success, FALSE on failure).
Note this value is returned internally to PHP for processing.
</p>
@since 5.4
|
gc
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/session/SessionHandler.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/session/SessionHandler.php
|
MIT
|
#[TentativeType]
public function open(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $path, #[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $name) : bool
{
}
|
Initialize session
@link https://php.net/manual/en/sessionhandler.open.php
@param string $path The path where to store/retrieve the session.
@param string $name The session name.
@return bool <p>
The return value (usually TRUE on success, FALSE on failure).
Note this value is returned internally to PHP for processing.
</p>
@since 5.4
|
open
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/session/SessionHandler.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/session/SessionHandler.php
|
MIT
|
#[TentativeType]
public function read(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $id) : string|false
{
}
|
Read session data
@link https://php.net/manual/en/sessionhandler.read.php
@param string $id The session id to read data for.
@return string|false <p>
Returns an encoded string of the read data.
If nothing was read, it must return an empty string.
Note this value is returned internally to PHP for processing.
</p>
@since 5.4
|
read
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/session/SessionHandler.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/session/SessionHandler.php
|
MIT
|
#[TentativeType]
public function write(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $id, #[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $data) : bool
{
}
|
Write session data
@link https://php.net/manual/en/sessionhandler.write.php
@param string $id The session id.
@param string $data <p>
The encoded session data. This data is the
result of the PHP internally encoding
the $_SESSION superglobal to a serialized
string and passing it as this parameter.
Please note sessions use an alternative serialization method.
</p>
@return bool <p>
The return value (usually TRUE on success, FALSE on failure).
Note this value is returned internally to PHP for processing.
</p>
@since 5.4
|
write
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/session/SessionHandler.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/session/SessionHandler.php
|
MIT
|
#[LanguageLevelTypeAware(["8.0" => "Shmop|false"], default: "resource|false")]
function shmop_open(int $key, string $mode, int $permissions, int $size)
{
}
|
Create or open shared memory block
@link https://php.net/manual/en/function.shmop-open.php
@param int $key <p>
System's id for the shared memory block.
Can be passed as a decimal or hex.
</p>
@param string $mode <p>
The flags that you can use:
"a" for access (sets SHM_RDONLY for shmat)
use this flag when you need to open an existing shared memory
segment for read only</p>
@param int $permissions <p>
The permissions that you wish to assign to your memory segment, those
are the same as permission for a file. Permissions need to be passed
in octal form, like for example 0644
</p>
@param int $size <p>
The size of the shared memory block you wish to create in bytes
</p>
@return resource|false|Shmop On success <b>shmop_open</b> will return an id that you can
use to access the shared memory segment you've created. <b>FALSE</b> is
returned on failure.
|
shmop_open
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/shmop/shmop.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/shmop/shmop.php
|
MIT
|
#[LanguageLevelTypeAware(["8.0" => "string"], default: "string|false")]
function shmop_read(#[LanguageLevelTypeAware(["8.0" => "Shmop"], default: "resource")] $shmop, int $offset, int $size)
{
}
|
Read data from shared memory block
@link https://php.net/manual/en/function.shmop-read.php
@param Shmop|resource $shmop <p>
The shared memory block identifier created by
<b>shmop_open</b>
</p>
@param int $offset <p>
Offset from which to start reading
</p>
@param int $size <p>
The number of bytes to read
</p>
@return string|false the data or <b>FALSE</b> on failure.
|
shmop_read
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/shmop/shmop.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/shmop/shmop.php
|
MIT
|
#[Deprecated(since: '8.0')]
function shmop_close(#[LanguageLevelTypeAware(["8.0" => "Shmop"], default: "resource")] $shmop) : void
{
}
|
Close shared memory block
@link https://php.net/manual/en/function.shmop-close.php
@param Shmop|resource $shmop <p>
The shared memory block identifier created by
<b>shmop_open</b>
</p>
@return void No value is returned.
|
shmop_close
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/shmop/shmop.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/shmop/shmop.php
|
MIT
|
#[LanguageLevelTypeAware(["8.0" => "int"], default: "int|false")]
function shmop_write(#[LanguageLevelTypeAware(["8.0" => "Shmop"], default: "resource")] $shmop, string $data, int $offset)
{
}
|
Write data into shared memory block
@link https://php.net/manual/en/function.shmop-write.php
@param Shmop|resource $shmop <p>
The shared memory block identifier created by
<b>shmop_open</b>
</p>
@param string $data <p>
A string to write into shared memory block
</p>
@param int $offset <p>
Specifies where to start writing data inside the shared memory
segment.
</p>
@return int|false The size of the written <i>data</i>, or <b>FALSE</b> on
failure.
|
shmop_write
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/shmop/shmop.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/shmop/shmop.php
|
MIT
|
#[Pure]
public function __construct(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $data, #[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $options = 0, #[LanguageLevelTypeAware(['8.0' => 'bool'], default: '')] $dataIsURL = \false, #[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $namespaceOrPrefix = "", #[LanguageLevelTypeAware(['8.0' => 'bool'], default: '')] $isPrefix = \false)
{
}
|
Creates a new SimpleXMLElement object
@link https://php.net/manual/en/simplexmlelement.construct.php
@param string $data A well-formed XML string or the path or URL to an XML document if data_is_url is TRUE.
@param int $options Optionally used to specify additional Libxml parameters.
@param bool $dataIsURL By default, data_is_url is FALSE.
Use TRUE to specify that data is a path or URL to an XML document instead of string data.
@param string $namespaceOrPrefix Namespace prefix or URI.
@param bool $isPrefix TRUE if ns is a prefix, FALSE if it's a URI; defaults to FALSE.
@throws Exception if the XML data could not be parsed.
@since 5.0.1
|
__construct
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
MIT
|
#[TentativeType]
public function asXML(#[LanguageLevelTypeAware(['8.0' => 'string|null'], default: '')] $filename = null) : string|bool
{
}
|
Return a well-formed XML string based on SimpleXML element
@link https://php.net/manual/en/simplexmlelement.asxml.php
@param string $filename [optional] <p>
If specified, the function writes the data to the file rather than
returning it.
</p>
@return string|bool If the <i>filename</i> isn't specified, this function
returns a string on success and <b>FALSE</b> on error. If the
parameter is specified, it returns <b>TRUE</b> if the file was written
successfully and <b>FALSE</b> otherwise.
@since 5.0.1
|
asXML
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
MIT
|
#[TentativeType]
public function saveXML(#[LanguageLevelTypeAware(['8.0' => 'string|null'], default: '')] $filename = null) : string|bool
{
}
|
Alias of <b>SimpleXMLElement::asXML</b>
Return a well-formed XML string based on SimpleXML element
@link https://php.net/manual/en/simplexmlelement.savexml.php
@param string $filename [optional] <p>
If specified, the function writes the data to the file rather than
returning it.
</p>
@return string|bool If the <i>filename</i> isn't specified, this function
returns a string on success and false on error. If the
parameter is specified, it returns true if the file was written
successfully and false otherwise.
|
saveXML
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
MIT
|
#[TentativeType]
public function xpath(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $expression) : array|false|null
{
}
|
Runs XPath query on XML data
@link https://php.net/manual/en/simplexmlelement.xpath.php
@param string $expression <p>
An XPath path
</p>
@return static[]|false|null an array of SimpleXMLElement objects or <b>FALSE</b> in
case of an error.
|
xpath
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
MIT
|
#[TentativeType]
public function registerXPathNamespace(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $prefix, #[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $namespace) : bool
{
}
|
Creates a prefix/ns context for the next XPath query
@link https://php.net/manual/en/simplexmlelement.registerxpathnamespace.php
@param string $prefix <p>
The namespace prefix to use in the XPath query for the namespace given in
<i>ns</i>.
</p>
@param string $namespace <p>
The namespace to use for the XPath query. This must match a namespace in
use by the XML document or the XPath query using
<i>prefix</i> will not return any results.
</p>
@return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
|
registerXPathNamespace
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
MIT
|
#[TentativeType]
public function attributes(#[LanguageLevelTypeAware(['8.0' => 'string|null'], default: '')] $namespaceOrPrefix = null, #[LanguageLevelTypeAware(['8.0' => 'bool'], default: '')] $isPrefix = \false) : ?static
{
}
|
Identifies an element's attributes
@link https://php.net/manual/en/simplexmlelement.attributes.php
@param string $namespaceOrPrefix [optional] <p>
An optional namespace for the retrieved attributes
</p>
@param bool $isPrefix [optional] <p>
Default to <b>FALSE</b>
</p>
@return static|null a <b>SimpleXMLElement</b> object that can be
iterated over to loop through the attributes on the tag.
</p>
<p>
Returns <b>NULL</b> if called on a <b>SimpleXMLElement</b>
object that already represents an attribute and not a tag.
@since 5.0.1
|
attributes
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
MIT
|
#[Pure]
#[TentativeType]
public function children(#[LanguageLevelTypeAware(['8.0' => 'string|null'], default: '')] $namespaceOrPrefix = null, #[LanguageLevelTypeAware(['8.0' => 'bool'], default: '')] $isPrefix = \false) : ?static
{
}
|
Finds children of given node
@link https://php.net/manual/en/simplexmlelement.children.php
@param string $namespaceOrPrefix [optional] <p>
An XML namespace.
</p>
@param bool $isPrefix [optional] <p>
If <i>is_prefix</i> is <b>TRUE</b>,
<i>ns</i> will be regarded as a prefix. If <b>FALSE</b>,
<i>ns</i> will be regarded as a namespace
URL.
</p>
@return static|null a <b>SimpleXMLElement</b> element, whether the node
has children or not.
@since 5.0.1
|
children
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
MIT
|
#[Pure]
#[TentativeType]
public function getNamespaces(#[LanguageLevelTypeAware(['8.0' => 'bool'], default: '')] $recursive = \false) : array
{
}
|
Returns namespaces used in document
@link https://php.net/manual/en/simplexmlelement.getnamespaces.php
@param bool $recursive [optional] <p>
If specified, returns all namespaces used in parent and child nodes.
Otherwise, returns only namespaces used in root node.
</p>
@return array The getNamespaces method returns an array of
namespace names with their associated URIs.
@since 5.1.2
|
getNamespaces
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
MIT
|
#[Pure]
#[TentativeType]
public function getDocNamespaces(#[LanguageLevelTypeAware(['8.0' => 'bool'], default: '')] $recursive = \false, #[LanguageLevelTypeAware(['8.0' => 'bool'], default: '')] $fromRoot = \true) : array|false
{
}
|
Returns namespaces declared in document
@link https://php.net/manual/en/simplexmlelement.getdocnamespaces.php
@param bool $recursive [optional] <p>
If specified, returns all namespaces declared in parent and child nodes.
Otherwise, returns only namespaces declared in root node.
</p>
@param bool $fromRoot [optional] <p>
Allows you to recursively check namespaces under a child node instead of
from the root of the XML doc.
</p>
@return array The getDocNamespaces method returns an array
of namespace names with their associated URIs.
@since 5.1.2
|
getDocNamespaces
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
MIT
|
#[Pure]
#[TentativeType]
public function getName() : string
{
}
|
Gets the name of the XML element
@link https://php.net/manual/en/simplexmlelement.getname.php
@return string The getName method returns as a string the
name of the XML tag referenced by the SimpleXMLElement object.
@since 5.1.3
|
getName
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
MIT
|
#[TentativeType]
public function addChild(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $qualifiedName, #[LanguageLevelTypeAware(['8.0' => 'string|null'], default: '')] $value = null, #[LanguageLevelTypeAware(['8.0' => 'string|null'], default: '')] $namespace = null) : ?static
{
}
|
Adds a child element to the XML node
@link https://php.net/manual/en/simplexmlelement.addchild.php
@param string $qualifiedName <p>
The name of the child element to add.
</p>
@param string $value [optional] <p>
If specified, the value of the child element.
</p>
@param string $namespace [optional] <p>
If specified, the namespace to which the child element belongs.
</p>
@return static|null The addChild method returns a SimpleXMLElement
object representing the child added to the XML node.
@since 5.1.3
|
addChild
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
MIT
|
#[TentativeType]
public function addAttribute(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $qualifiedName, #[PhpStormStubsElementAvailable(from: '5.3', to: '7.4')] $value = null, #[PhpStormStubsElementAvailable(from: '8.0')] string $value, #[LanguageLevelTypeAware(['8.0' => 'string|null'], default: '')] $namespace = null) : void
{
}
|
Adds an attribute to the SimpleXML element
@link https://php.net/manual/en/simplexmlelement.addattribute.php
@param string $qualifiedName <p>
The name of the attribute to add.
</p>
@param string $value <p>
The value of the attribute.
</p>
@param string $namespace [optional] <p>
If specified, the namespace to which the attribute belongs.
</p>
@return void No value is returned.
@since 5.1.3
|
addAttribute
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
MIT
|
#[TentativeType]
public function __toString() : string
{
}
|
Returns the string content
@link https://php.net/manual/en/simplexmlelement.tostring.php
@return string the string content on success or an empty string on failure.
@since 5.3
|
__toString
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
MIT
|
#[Pure]
#[TentativeType]
public function count() : int
{
}
|
Counts the children of an element
@link https://php.net/manual/en/simplexmlelement.count.php
@return int<0,max> the number of elements of an element.
|
count
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
MIT
|
#[Pure]
public function offsetExists($offset)
{
}
|
Class provides access to children by position, and attributes by name
private Method not callable directly, stub exists for typehint only
@param string|int $offset
@return bool true on success or false on failure.
|
offsetExists
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
MIT
|
#[Pure]
public function offsetGet($offset)
{
}
|
Class provides access to children by position, and attributes by name
private Method not callable directly, stub exists for typehint only
@param string|int $offset
@return static Either a named attribute or an element from a list of children
|
offsetGet
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
MIT
|
#[TentativeType]
public function rewind() : void
{
}
|
Rewind to the first element
@link https://php.net/manual/en/simplexmliterator.rewind.php
@return void No value is returned.
|
rewind
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
MIT
|
#[Pure]
#[TentativeType]
public function valid() : bool
{
}
|
Check whether the current element is valid
@link https://php.net/manual/en/simplexmliterator.valid.php
@return bool <b>TRUE</b> if the current element is valid, otherwise <b>FALSE</b>
|
valid
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
MIT
|
#[Pure]
#[TentativeType]
public function current() : ?static
{
}
|
Returns the current element
@link https://php.net/manual/en/simplexmliterator.current.php
@return static|null the current element as a <b>SimpleXMLElement</b> object or <b>NULL</b> on failure.
|
current
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
MIT
|
#[TentativeType]
#[LanguageLevelTypeAware(['8.0' => 'string'], default: 'string|false')]
public function key()
{
}
|
Return current key
@link https://php.net/manual/en/simplexmliterator.key.php
@return string|false the XML tag name of the element referenced by the current <b>SimpleXMLIterator</b> object
|
key
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
MIT
|
#[TentativeType]
public function next() : void
{
}
|
Move to next element
@link https://php.net/manual/en/simplexmliterator.next.php
@return void No value is returned.
|
next
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
MIT
|
#[Pure]
public function valid()
{
}
|
Check whether the current element is valid
@link https://php.net/manual/en/simplexmliterator.valid.php
@return bool <b>TRUE</b> if the current element is valid, otherwise <b>FALSE</b>
|
valid
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
MIT
|
#[Pure]
public function current()
{
}
|
Returns the current element
@link https://php.net/manual/en/simplexmliterator.current.php
@return static|null the current element as a <b>SimpleXMLIterator</b> object or <b>NULL</b> on failure.
|
current
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
MIT
|
#[Pure]
public function hasChildren()
{
}
|
Checks whether the current element has sub elements.
@link https://php.net/manual/en/simplexmliterator.haschildren.php
@return bool <b>TRUE</b> if the current element has sub-elements, otherwise <b>FALSE</b>
|
hasChildren
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
MIT
|
#[Pure]
public function getChildren()
{
}
|
Returns the sub-elements of the current element
@link https://php.net/manual/en/simplexmliterator.getchildren.php
@return SimpleXMLIterator a <b>SimpleXMLIterator</b> object containing
the sub-elements of the current element.
|
getChildren
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
MIT
|
#[Pure]
public function count()
{
}
|
Counts the children of an element
@link https://php.net/manual/en/simplexmlelement.count.php
@return int the number of elements of an element.
|
count
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SimpleXML/SimpleXML.php
|
MIT
|
#[Deprecated]
#[TentativeType]
public function __call(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $name, array $args) : mixed
{
}
|
@link https://php.net/manual/en/soapclient.call.php
@param string $name
@param array $args
@return mixed
@since 5.0.1
|
__call
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
MIT
|
#[TentativeType]
public function __soapCall(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $name, array $args, #[LanguageLevelTypeAware(['8.0' => 'array|null'], default: '')] $options = null, $inputHeaders = null, &$outputHeaders = null) : mixed
{
}
|
Calls a SOAP function
@link https://php.net/manual/en/soapclient.soapcall.php
@param string $name <p>
The name of the SOAP function to call.
</p>
@param array $args <p>
An array of the arguments to pass to the function. This can be either
an ordered or an associative array. Note that most SOAP servers require
parameter names to be provided, in which case this must be an
associative array.
</p>
@param array $options [optional] <p>
An associative array of options to pass to the client.
</p>
<p>
The location option is the URL of the remote Web service.
</p>
<p>
The uri option is the target namespace of the SOAP service.
</p>
<p>
The soapaction option is the action to call.
</p>
@param mixed $inputHeaders [optional] <p>
An array of headers to be sent along with the SOAP request.
</p>
@param array &$outputHeaders [optional] <p>
If supplied, this array will be filled with the headers from the SOAP response.
</p>
@return mixed SOAP functions may return one, or multiple values. If only one value is returned
by the SOAP function, the return value of __soapCall will be
a simple value (e.g. an integer, a string, etc). If multiple values are
returned, __soapCall will return
an associative array of named output parameters.
</p>
<p>
On error, if the SoapClient object was constructed with the exceptions
option set to <b>FALSE</b>, a SoapFault object will be returned. If this
option is not set, or is set to <b>TRUE</b>, then a SoapFault object will
be thrown as an exception.
@throws SoapFault A SoapFault exception will be thrown if an error occurs
and the SoapClient was constructed with the exceptions option not set, or
set to <b>TRUE</b>.
@since 5.0.1
|
__soapCall
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
MIT
|
#[TentativeType]
public function __getLastRequest() : ?string
{
}
|
Returns last SOAP request
@link https://php.net/manual/en/soapclient.getlastrequest.php
@return string|null The last SOAP request, as an XML string.
@since 5.0.1
|
__getLastRequest
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
MIT
|
#[TentativeType]
public function __getLastResponse() : ?string
{
}
|
Returns last SOAP response
@link https://php.net/manual/en/soapclient.getlastresponse.php
@return string|null The last SOAP response, as an XML string.
@since 5.0.1
|
__getLastResponse
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
MIT
|
#[TentativeType]
public function __getLastRequestHeaders() : ?string
{
}
|
Returns the SOAP headers from the last request
@link https://php.net/manual/en/soapclient.getlastrequestheaders.php
@return string|null The last SOAP request headers.
@since 5.0.1
|
__getLastRequestHeaders
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
MIT
|
#[TentativeType]
public function __getLastResponseHeaders() : ?string
{
}
|
Returns the SOAP headers from the last response
@link https://php.net/manual/en/soapclient.getlastresponseheaders.php
@return string|null The last SOAP response headers.
@since 5.0.1
|
__getLastResponseHeaders
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
MIT
|
#[TentativeType]
public function __getFunctions() : ?array
{
}
|
Returns list of available SOAP functions
@link https://php.net/manual/en/soapclient.getfunctions.php
@return array|null The array of SOAP function prototypes, detailing the return type,
the function name and type-hinted parameters.
@since 5.0.1
|
__getFunctions
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
MIT
|
#[TentativeType]
public function __getTypes() : ?array
{
}
|
Returns a list of SOAP types
@link https://php.net/manual/en/soapclient.gettypes.php
@return array|null The array of SOAP types, detailing all structures and types.
@since 5.0.1
|
__getTypes
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
MIT
|
#[TentativeType]
public function __getCookies() : array
{
}
|
Returns a list of all cookies
@link https://php.net/manual/en/soapclient.getcookies.php
@return array The array of all cookies
@since 5.4.3
|
__getCookies
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
MIT
|
#[TentativeType]
public function __doRequest(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $request, #[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $location, #[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $action, #[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $version, #[LanguageLevelTypeAware(["8.0" => 'bool'], default: 'int')] $oneWay = \false) : ?string
{
}
|
Performs a SOAP request
@link https://php.net/manual/en/soapclient.dorequest.php
@param string $request <p>
The XML SOAP request.
</p>
@param string $location <p>
The URL to request.
</p>
@param string $action <p>
The SOAP action.
</p>
@param int $version <p>
The SOAP version.
</p>
@param bool|int $oneWay [optional] <p>
If $oneWay is set to 1, this method returns nothing.
Use this where a response is not expected.
</p>
@return string|null The XML SOAP response.
@since 5.0.1
|
__doRequest
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
MIT
|
#[TentativeType]
public function __setCookie(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $name, #[LanguageLevelTypeAware(["8.0" => "string|null"], default: "string")] $value) : void
{
}
|
The __setCookie purpose
@link https://php.net/manual/en/soapclient.setcookie.php
@param string $name <p>
The name of the cookie.
</p>
@param string $value [optional] <p>
The value of the cookie. If not specified, the cookie will be deleted.
</p>
@return void No value is returned.
@since 5.0.4
|
__setCookie
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
MIT
|
#[TentativeType]
public function __setLocation(#[LanguageLevelTypeAware(['8.0' => 'string|null'], default: '')] $location = null) : ?string
{
}
|
Sets the location of the Web service to use
@link https://php.net/manual/en/soapclient.setlocation.php
@param string $location [optional] <p>
The new endpoint URL.
</p>
@return string|null The old endpoint URL.
@since 5.0.1
|
__setLocation
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
MIT
|
#[TentativeType]
public function __setSoapHeaders(#[PhpStormStubsElementAvailable(from: '5.3', to: '5.6')] $headers, #[PhpStormStubsElementAvailable(from: '7.0')] $headers = null) : bool
{
}
|
Sets SOAP headers for subsequent calls
@link https://php.net/manual/en/soapclient.setsoapheaders.php
@param mixed $headers <p>
The headers to be set. It could be <b>SoapHeader</b>
object or array of <b>SoapHeader</b> objects.
If not specified or set to <b>NULL</b>, the headers will be deleted.
</p>
@return bool <b>TRUE</b> on success or <b>FALSE</b> on failure.
@since 5.0.5
|
__setSoapHeaders
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
MIT
|
#[TentativeType]
public function setPersistence(#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $mode) : void
{
}
|
Sets SoapServer persistence mode
@link https://php.net/manual/en/soapserver.setpersistence.php
@param int $mode <p>
One of the SOAP_PERSISTENCE_XXX constants.
</p>
<p>
<b>SOAP_PERSISTENCE_REQUEST</b> - SoapServer data does not persist between
requests. This is the default behavior of any SoapServer
object after setClass is called.
</p>
<p>
<b>SOAP_PERSISTENCE_SESSION</b> - SoapServer data persists between requests.
This is accomplished by serializing the SoapServer class data into
$_SESSION['_bogus_session_name'], because of this
<b>session_start</b> must be called before this persistence mode is set.
</p>
@return void No value is returned.
@since 5.1.2
|
setPersistence
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
MIT
|
#[TentativeType]
public function setClass(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $class, #[LanguageLevelTypeAware(['8.0' => 'mixed'], default: '')] ...$args) : void
{
}
|
Sets the class which handles SOAP requests
@link https://php.net/manual/en/soapserver.setclass.php
@param string $class <p>
The name of the exported class.
</p>
@param mixed ...$args [optional] These optional parameters will be passed to the default class constructor during object creation.
@return void No value is returned.
@since 5.0.1
|
setClass
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
MIT
|
#[TentativeType]
public function setObject(object $object) : void
{
}
|
Sets the object which will be used to handle SOAP requests
@link https://php.net/manual/en/soapserver.setobject.php
@param object $object <p>
The object to handle the requests.
</p>
@return void No value is returned.
|
setObject
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
MIT
|
#[TentativeType]
public function addFunction($functions) : void
{
}
|
Adds one or more functions to handle SOAP requests
@link https://php.net/manual/en/soapserver.addfunction.php
@param mixed $functions <p>
To export one function, pass the function name into this parameter as
a string.
</p>
<p>
To export several functions, pass an array of function names.
</p>
<p>
To export all the functions, pass a special constant <b>SOAP_FUNCTIONS_ALL</b>.
</p>
<p>
<i>functions</i> must receive all input arguments in the same
order as defined in the WSDL file (They should not receive any output parameters
as arguments) and return one or more values. To return several values they must
return an array with named output parameters.
</p>
@return void No value is returned.
@since 5.0.1
|
addFunction
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
MIT
|
#[TentativeType]
public function getFunctions() : array
{
}
|
Returns list of defined functions
@link https://php.net/manual/en/soapserver.getfunctions.php
@return array An array of the defined functions.
@since 5.0.1
|
getFunctions
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
MIT
|
#[TentativeType]
public function fault(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $code, #[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $string, #[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $actor = '', #[LanguageLevelTypeAware(['8.0' => 'mixed'], default: '')] $details = null, #[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $name = '') : void
{
}
|
Issue SoapServer fault indicating an error
@link https://php.net/manual/en/soapserver.fault.php
@param string $code <p>
The error code to return
</p>
@param string $string <p>
A brief description of the error
</p>
@param string $actor [optional] <p>
A string identifying the actor that caused the fault.
</p>
@param string $details [optional] <p>
More details of the fault
</p>
@param string $name [optional] <p>
The name of the fault. This can be used to select a name from a WSDL file.
</p>
@return void No value is returned.
@since 5.0.1
|
fault
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
MIT
|
#[TentativeType]
public function addSoapHeader(\SoapHeader $header) : void
{
}
|
Add a SOAP header to the response
@link https://php.net/manual/en/soapserver.addsoapheader.php
@param SoapHeader $header <p>
The header to be returned.
</p>
@return void No value is returned.
@since 5.0.1
|
addSoapHeader
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
MIT
|
#[Pure]
public function __construct(#[LanguageLevelTypeAware(['8.0' => 'array|string|null'], default: '')] $code, #[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $string, #[LanguageLevelTypeAware(['8.0' => 'string|null'], default: '')] $actor = null, #[LanguageLevelTypeAware(['8.0' => 'mixed'], default: '')] $details = null, #[LanguageLevelTypeAware(['8.0' => 'string|null'], default: '')] $name = null, #[LanguageLevelTypeAware(['8.0' => 'mixed'], default: '')] $headerFault = null)
{
}
|
SoapFault constructor
@link https://php.net/manual/en/soapfault.soapfault.php
@param string $code <p>
The error code of the <b>SoapFault</b>.
</p>
@param string $string <p>
The error message of the <b>SoapFault</b>.
</p>
@param string $actor [optional] <p>
A string identifying the actor that caused the error.
</p>
@param mixed $details [optional] <p>
More details about the cause of the error.
</p>
@param string $name [optional] <p>
Can be used to select the proper fault encoding from WSDL.
</p>
@param mixed $headerFault [optional] <p>
Can be used during SOAP header handling to report an error in the
response header.
</p>
@since 5.0.1
|
__construct
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
MIT
|
#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')]
public function __toString()
{
}
|
Obtain a string representation of a SoapFault
@link https://php.net/manual/en/soapfault.tostring.php
@return string A string describing the SoapFault.
@since 5.0.1
|
__toString
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/soap/soap.php
|
MIT
|
#[ArrayShape(['ai_flags' => 'int', 'ai_family' => 'int', 'ai_socktype' => 'int', 'ai_protocol' => 'int', 'ai_canonname' => 'string', 'ai_addr' => ['sin_port' => 'int', 'sin_addr' => 'string', 'sin6_port' => 'int', 'sin6_addr' => 'string']])]
function socket_addrinfo_explain(\AddressInfo $address) : array
{
}
|
(PHP 7 >= 7.2.0)<br/>
Get information about addrinfo
@link https://www.php.net/manual/en/function.socket-addrinfo-explain.php
@param resource|AddressInfo $address <p>
Resource created from {@see socket_addrinfo_lookup()}
</p>
@return array containing the fields in the addrinfo structure.
@since 7.2
|
socket_addrinfo_explain
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/sockets/sockets.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/sockets/sockets.php
|
MIT
|
#[LanguageLevelTypeAware(['8.2' => 'true'], default: 'bool')]
function sodium_crypto_generichash_update(string &$state, string $message) : bool
{
}
|
Update the hash state with some data
BLAKE2b
@link https://www.php.net/manual/en/function.sodium-crypto-generichash-update.php
@param string &$state
@param string $message
@return bool
@throws SodiumException
@since 7.2
|
sodium_crypto_generichash_update
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/sodium/sodium.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/sodium/sodium.php
|
MIT
|
#[TentativeType]
public function current() : never
{
}
|
Return the current element
@link https://php.net/manual/en/iterator.current.php
@return mixed Can return any type.
|
current
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
MIT
|
#[TentativeType]
public function next() : void
{
}
|
Move forward to next element
@link https://php.net/manual/en/iterator.next.php
@return void Any returned value is ignored.
|
next
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
MIT
|
#[TentativeType]
public function key() : never
{
}
|
Return the key of the current element
@link https://php.net/manual/en/iterator.key.php
@return mixed The key of the current element.
|
key
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
MIT
|
#[TentativeType]
#[LanguageLevelTypeAware(['8.2' => 'false'], default: 'bool')]
public function valid()
{
}
|
Checks if current position is valid
@link https://php.net/manual/en/iterator.valid.php
@return bool The return value will be casted to boolean and then evaluated.
Returns true on success or false on failure.
|
valid
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
MIT
|
#[TentativeType]
public function rewind() : void
{
}
|
Rewind the Iterator to the first element
@link https://php.net/manual/en/iterator.rewind.php
@return void Any returned value is ignored.
|
rewind
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
MIT
|
#[TentativeType]
public function accept() : bool
{
}
|
This method calls the callback with the current value, current key and the inner iterator.
The callback is expected to return TRUE if the current item is to be accepted, or FALSE otherwise.
@link https://secure.php.net/manual/en/callbackfilteriterator.accept.php
@return bool true if the current element is acceptable, otherwise false.
|
accept
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
MIT
|
#[TentativeType]
public function hasChildren() : bool
{
}
|
Check whether the inner iterator's current element has children
@link https://php.net/manual/en/recursiveiterator.haschildren.php
@return bool Returns TRUE if the current element has children, FALSE otherwise.
|
hasChildren
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
MIT
|
#[TentativeType]
public function getChildren() : \RecursiveCallbackFilterIterator
{
}
|
Returns an iterator for the current entry.
@link https://secure.php.net/manual/en/recursivecallbackfilteriterator.haschildren.php
@return RecursiveCallbackFilterIterator containing the children.
|
getChildren
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
MIT
|
#[TentativeType]
public function rewind() : void
{
}
|
Rewind the iterator to the first element of the top level inner iterator
@link https://php.net/manual/en/recursiveiteratoriterator.rewind.php
@return void
|
rewind
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
MIT
|
#[TentativeType]
public function valid() : bool
{
}
|
Check whether the current position is valid
@link https://php.net/manual/en/recursiveiteratoriterator.valid.php
@return bool true if the current position is valid, otherwise false
|
valid
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
MIT
|
#[TentativeType]
public function key() : mixed
{
}
|
Access the current key
@link https://php.net/manual/en/recursiveiteratoriterator.key.php
@return mixed The key of the current element.
|
key
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
MIT
|
#[TentativeType]
public function current() : mixed
{
}
|
Access the current element value
@link https://php.net/manual/en/recursiveiteratoriterator.current.php
@return mixed The current elements value.
|
current
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
MIT
|
#[TentativeType]
public function next() : void
{
}
|
Move forward to the next element
@link https://php.net/manual/en/recursiveiteratoriterator.next.php
@return void
|
next
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
MIT
|
#[TentativeType]
public function getDepth() : int
{
}
|
Get the current depth of the recursive iteration
@link https://php.net/manual/en/recursiveiteratoriterator.getdepth.php
@return int The current depth of the recursive iteration.
|
getDepth
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
MIT
|
#[TentativeType]
public function getSubIterator(#[LanguageLevelTypeAware(['8.0' => 'int|null'], default: '')] $level) : ?\RecursiveIterator
{
}
|
The current active sub iterator
@link https://php.net/manual/en/recursiveiteratoriterator.getsubiterator.php
@param int $level [optional]
@return RecursiveIterator|null The current active sub iterator.
|
getSubIterator
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
MIT
|
#[TentativeType]
public function getInnerIterator() : \RecursiveIterator
{
}
|
Get inner iterator
@link https://php.net/manual/en/recursiveiteratoriterator.getinneriterator.php
@return RecursiveIterator The current active sub iterator.
|
getInnerIterator
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
MIT
|
#[TentativeType]
public function beginIteration() : void
{
}
|
Begin Iteration
@link https://php.net/manual/en/recursiveiteratoriterator.beginiteration.php
@return void
|
beginIteration
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
MIT
|
#[TentativeType]
public function endIteration() : void
{
}
|
End Iteration
@link https://php.net/manual/en/recursiveiteratoriterator.enditeration.php
@return void
|
endIteration
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
MIT
|
#[TentativeType]
public function callHasChildren() : bool
{
}
|
Has children
@link https://php.net/manual/en/recursiveiteratoriterator.callhaschildren.php
@return bool true if the element has children, otherwise false
|
callHasChildren
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
MIT
|
#[TentativeType]
public function callGetChildren() : ?\RecursiveIterator
{
}
|
Get children
@link https://php.net/manual/en/recursiveiteratoriterator.callgetchildren.php
@return RecursiveIterator|null A <b>RecursiveIterator</b>.
|
callGetChildren
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/SPL/SPL.php
|
MIT
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.