ILIAS
release_5-4 Revision v5.4.26-12-gabc799a52e6
|
Data Structures | |
class | AppendStream |
Reads from multiple streams, one after the other. More... | |
class | BufferStream |
Provides a buffer stream that can be written to to fill a buffer, and read from to remove bytes from the buffer. More... | |
class | CachingStream |
Stream decorator that can cache previously read bytes from a sequentially read stream. More... | |
class | DroppingStream |
Stream decorator that begins dropping data once the size of the underlying stream becomes too full. More... | |
class | FnStream |
Compose stream implementations based on a hash of functions. More... | |
class | InflateStream |
Uses PHP's zlib.inflate filter to inflate deflate or gzipped content. More... | |
class | LazyOpenStream |
Lazily reads or writes to a file that is opened only after an IO operation take place on the stream. More... | |
class | LimitStream |
Decorator used to return only a subset of a stream. More... | |
class | MultipartStream |
Stream that when read returns bytes for a streaming multipart or multipart/form-data stream. More... | |
class | NoSeekStream |
Stream decorator that prevents a stream from being seeked. More... | |
class | PumpStream |
Provides a read only stream that pumps data from a PHP callable. More... | |
class | Request |
PSR-7 request implementation. More... | |
class | Response |
PSR-7 response implementation. More... | |
class | ServerRequest |
Server-side HTTP request. More... | |
class | Stream |
class | StreamWrapper |
Converts Guzzle streams into PHP stream resources. More... | |
class | UploadedFile |
class | Uri |
PSR-7 URI implementation. More... | |
class | UriNormalizer |
Provides methods to normalize and compare URIs. More... | |
class | UriResolver |
Resolves a URI reference in the context of a base URI and the opposite way. More... | |
Functions | |
str (MessageInterface $message) | |
Returns the string representation of an HTTP message. More... | |
uri_for ($uri) | |
Returns a UriInterface for the given value. More... | |
stream_for ($resource='', array $options=[]) | |
Create a new stream based on the input type. More... | |
parse_header ($header) | |
Parse an array of header values containing ";" separated data into an array of associative arrays representing the header key value pair data of the header. More... | |
normalize_header ($header) | |
Converts an array of header values that may contain comma separated headers into an array of headers with no comma separated values. More... | |
modify_request (RequestInterface $request, array $changes) | |
Clone and modify a request with the given changes. More... | |
rewind_body (MessageInterface $message) | |
Attempts to rewind a message body and throws an exception on failure. More... | |
copy_to_string (StreamInterface $stream, $maxLen=-1) | |
Copy the contents of a stream into a string until the given number of bytes have been read. More... | |
copy_to_stream (StreamInterface $source, StreamInterface $dest, $maxLen=-1) | |
Copy the contents of a stream into another stream until the given number of bytes have been read. More... | |
hash (StreamInterface $stream, $algo, $rawOutput=false) | |
Calculate a hash of a Stream. More... | |
readline (StreamInterface $stream, $maxLength=null) | |
Read a line from the stream up to the maximum allowed buffer length. More... | |
parse_request ($message) | |
Parses a request message string into a request object. More... | |
parse_response ($message) | |
Parses a response message string into a response object. More... | |
parse_query ($str, $urlEncoding=true) | |
Parse a query string into an associative array. More... | |
build_query (array $params, $encoding=PHP_QUERY_RFC3986) | |
Build a query string from an array of key value pairs. More... | |
mimetype_from_filename ($filename) | |
Determines the mimetype of a file by looking at its extension. More... | |
mimetype_from_extension ($extension) | |
Maps a file extensions to a mimetype. More... | |
_parse_message ($message) | |
Parses an HTTP message into an associative array. More... | |
_parse_request_uri ($path, array $headers) | |
Constructs a URI for an HTTP request message. More... | |
_caseless_remove ($keys, array $data) | |
getProtocolVersion () | |
withProtocolVersion ($version) | |
getHeaders () | |
hasHeader ($header) | |
getHeader ($header) | |
getHeaderLine ($header) | |
withHeader ($header, $value) | |
withAddedHeader ($header, $value) | |
withoutHeader ($header) | |
getBody () | |
withBody (StreamInterface $body) | |
setHeaders (array $headers) | |
trimHeaderValues (array $values) | |
Trims whitespace from the header values. More... | |
Variables | |
trait | MessageTrait |
Trait implementing functionality common to requests and responses. More... | |
$headerNames = [] | |
$protocol = '1.1' | |
$stream | |
PHP stream implementation. More... | |
GuzzleHttp\Psr7\_caseless_remove | ( | $keys, | |
array | $data | ||
) |
Definition at line 813 of file functions.php.
References $key, $keys, and $result.
Referenced by GuzzleHttp\Psr7\modify_request().
GuzzleHttp\Psr7\_parse_message | ( | $message | ) |
Parses an HTTP message into an associative array.
The array contains the "start-line" key containing the start line of the message, "headers" key containing an associative array of header array values, and a "body" key containing the body of the message.
string | $message | HTTP request or response to parse. |
Definition at line 755 of file functions.php.
References $i, $key, $message, and $result.
Referenced by GuzzleHttp\Psr7\parse_request(), and GuzzleHttp\Psr7\parse_response().
GuzzleHttp\Psr7\_parse_request_uri | ( | $path, | |
array | $headers | ||
) |
Constructs a URI for an HTTP request message.
string | $path | Path from the start-line |
array | $headers | Array of headers (each value an array). |
Definition at line 795 of file functions.php.
References $path.
Referenced by GuzzleHttp\Psr7\parse_request().
GuzzleHttp\Psr7\build_query | ( | array | $params, |
$encoding = PHP_QUERY_RFC3986 |
|||
) |
Build a query string from an array of key value pairs.
This function can use the return value of parse_query() to build a query string. This function does not modify the provided keys when an array is encountered (like http_build_query would).
array | $params | Query string parameters. |
int | false | $encoding | Set to false to not encode, PHP_QUERY_RFC3986 to encode using RFC3986, or PHP_QUERY_RFC1738 to encode using RFC1738. |
Definition at line 574 of file functions.php.
GuzzleHttp\Psr7\copy_to_stream | ( | StreamInterface | $source, |
StreamInterface | $dest, | ||
$maxLen = -1 |
|||
) |
Copy the contents of a stream into another stream until the given number of bytes have been read.
StreamInterface | $source | Stream to read from |
StreamInterface | $dest | Stream to write to |
int | $maxLen | Maximum number of bytes to read. Pass -1 to read the entire stream. |
Definition at line 369 of file functions.php.
References $remaining, Psr\Http\Message\StreamInterface\eof(), Psr\Http\Message\StreamInterface\read(), and Psr\Http\Message\StreamInterface\write().
Referenced by GuzzleHttp\Psr7\CachingStream\cacheEntireStream(), and GuzzleHttp\Psr7\UploadedFile\moveTo().
GuzzleHttp\Psr7\copy_to_string | ( | StreamInterface | $stream, |
$maxLen = -1 |
|||
) |
Copy the contents of a stream into a string until the given number of bytes have been read.
StreamInterface | $stream | Stream to read |
int | $maxLen | Maximum number of bytes to read. Pass -1 to read the entire stream. |
Definition at line 328 of file functions.php.
References Psr\Http\Message\StreamInterface\eof(), and Psr\Http\Message\StreamInterface\read().
Referenced by GuzzleHttp\Psr7\PumpStream\__toString(), and GuzzleHttp\Psr7\AppendStream\getContents().
GuzzleHttp\Psr7\getBody | ( | ) |
Definition at line 123 of file MessageTrait.php.
References GuzzleHttp\Psr7\$stream, and GuzzleHttp\Psr7\stream_for().
GuzzleHttp\Psr7\getHeader | ( | $header | ) |
Definition at line 49 of file MessageTrait.php.
References $header.
Referenced by GuzzleHttp\Psr7\getHeaderLine().
GuzzleHttp\Psr7\getHeaderLine | ( | $header | ) |
Definition at line 62 of file MessageTrait.php.
References $header, and GuzzleHttp\Psr7\getHeader().
GuzzleHttp\Psr7\getHeaders | ( | ) |
Definition at line 39 of file MessageTrait.php.
GuzzleHttp\Psr7\getProtocolVersion | ( | ) |
GuzzleHttp\Psr7\hash | ( | StreamInterface | $stream, |
$algo, | |||
$rawOutput = false |
|||
) |
Calculate a hash of a Stream.
StreamInterface | $stream | Stream to calculate the hash for |
string | $algo | Hash algorithm (e.g. md5, crc32, etc) |
bool | $rawOutput | Whether or not to use raw output |
Definition at line 406 of file functions.php.
References $algo, $out, Psr\Http\Message\StreamInterface\eof(), Psr\Http\Message\StreamInterface\read(), Psr\Http\Message\StreamInterface\rewind(), Psr\Http\Message\StreamInterface\seek(), and Psr\Http\Message\StreamInterface\tell().
Referenced by League\Flysystem\SafeStorage\__construct(), phpseclib\Crypt\RSA\__construct(), League\Flysystem\SafeStorage\__destruct(), phpseclib\Crypt\RSA\_emsa_pkcs1_v1_5_encode(), phpseclib\Crypt\RSA\_emsa_pss_encode(), phpseclib\Crypt\RSA\_emsa_pss_verify(), TCPDF\_generateencryptionkey(), phpseclib\Crypt\Base\_hashInlineCryptFunction(), TCPDF\_OEvalue(), TCPDF\_Ovalue(), phpseclib\Crypt\RSA\_rsaes_oaep_decrypt(), phpseclib\Crypt\RSA\_rsaes_oaep_encrypt(), TCPDF\_UEvalue(), TCPDF\_Uvalue(), PHPMailer\PHPMailer\PHPMailer\attachAll(), RobRichards\XMLSecLibs\XMLSecurityDSig\calculateDigest(), SimpleSAML\Auth\TimeLimitedToken\calculateTokenValue(), WhiteHat101\Crypt\APR1_MD5\check(), ilMMSubItemGUI\confirmDelete(), ilMMTopItemGUI\confirmDelete(), Twig_Environment\createTemplate(), ZipStream\File\deflateData(), ZipStream\File\deflateFinish(), ZipStream\File\deflateInit(), ilCertificateTemplateDeleteAction\delete(), PHPMailer\PHPMailer\PHPMailer\DKIM_Add(), Twig_Test_IntegrationTestCase\doIntegrationTest(), ilMMTopItemTableGUI\fillRow(), PHPMailer\PHPMailer\PHPMailer\generateId(), Twig_Cache_Filesystem\generateKey(), sspmod_saml_IdP_SAML2\generateNameIdValue(), Monolog\Processor\UidProcessor\generateUid(), sspmod_consent_Auth_Process_Consent\getAttributeHash(), IMSGlobal\LTI\ToolProvider\DataConnector\DataConnector\getConsumerKey(), ilCertificateGUI\getEditorForm(), PhpOffice\PhpSpreadsheet\Worksheet\Worksheet\getHashCode(), sspmod_consent_Auth_Process_Consent\getHashedUserID(), CAS_PGTStorage_File\getPGTIouFilename(), ilMMSubItemTableGUI\getPossibleParentsForFormAndTable(), ilMMSubItemTableGUI\getSelect(), sspmod_consent_Auth_Process_Consent\getTargetedID(), Twig_Parser\getVarName(), Twig_Profiler_NodeVisitor_Profiler\getVarName(), Twig_Compiler\getVarName(), PhpOffice\PhpSpreadsheet\Shared\PasswordHasher\hashPassword(), ilCertificateTemplateImportAction\import(), ilMMSubItemTableGUI\initColumns(), ilMMSubitemFormGUI\initForm(), ilMMTopItemFormGUI\initForm(), phpseclib\Crypt\RSA\loadKey(), PHPMailer\PHPMailer\PHPMailer\msgHTML(), ilBadgeAssignment\prepareJson(), SimpleSAML\Utils\Crypto\pwHash(), Jumbojett\OpenIDConnectClient\requestAuthorization(), League\Flysystem\SafeStorage\retrieveSafely(), ILIAS\BackgroundTasks\Implementation\Persistence\ValueContainer\setHash(), phpseclib\Crypt\RSA\setHash(), Twig_Tests_Cache_FilesystemTest\setUp(), Symfony\Component\Yaml\Tests\ParserTest\testEmptyValue(), APR1_MD5_HashTest\testHash__nullSalt(), APR1_MD5_HashTest\testHash_apache(), APR1_MD5_HashTest\testHash_ChangeMe1(), APR1_MD5_HashTest\testHash_ChangeMe1_blankSalt(), APR1_MD5_HashTest\testHash_ChangeMe1_longSalt(), APR1_MD5_HashTest\testHash_ChangeMe1_nullSalt(), APR1_MD5_HashTest\testHash_null_nullSalt(), APR1_MD5_HashTest\testHash_WhiteHat101(), Symfony\Component\Yaml\Tests\ParserTest\testMappingInASequence(), Symfony\Component\Yaml\Tests\ParserTest\testSequenceInAMapping(), and Jumbojett\OpenIDConnectClient\verifyJWTclaims().
GuzzleHttp\Psr7\hasHeader | ( | $header | ) |
GuzzleHttp\Psr7\mimetype_from_extension | ( | $extension | ) |
Maps a file extensions to a mimetype.
$extension | string The file extension. |
Definition at line 633 of file functions.php.
References $mimetypes.
Referenced by GuzzleHttp\Psr7\mimetype_from_filename().
GuzzleHttp\Psr7\mimetype_from_filename | ( | $filename | ) |
Determines the mimetype of a file by looking at its extension.
$filename |
Definition at line 620 of file functions.php.
References $filename, and GuzzleHttp\Psr7\mimetype_from_extension().
Referenced by GuzzleHttp\Psr7\MultipartStream\createElement().
GuzzleHttp\Psr7\modify_request | ( | RequestInterface | $request, |
array | $changes | ||
) |
Clone and modify a request with the given changes.
The changes can be one of:
RequestInterface | $request | Request to clone and modify. |
array | $changes | Changes to apply. |
Definition at line 201 of file functions.php.
References $request, GuzzleHttp\Psr7\_caseless_remove(), Psr\Http\Message\MessageInterface\getBody(), Psr\Http\Message\MessageInterface\getHeaders(), Psr\Http\Message\RequestInterface\getMethod(), Psr\Http\Message\MessageInterface\getProtocolVersion(), and Psr\Http\Message\RequestInterface\getUri().
GuzzleHttp\Psr7\normalize_header | ( | $header | ) |
Converts an array of header values that may contain comma separated headers into an array of headers with no comma separated values.
string | array | $header | Header to normalize. |
Definition at line 162 of file functions.php.
References $header, and $result.
Referenced by GuzzleHttp\Psr7\parse_header().
GuzzleHttp\Psr7\parse_header | ( | $header | ) |
Parse an array of header values containing ";" separated data into an array of associative arrays representing the header key value pair data of the header.
When a parameter does not contain a value, but just contains a key, this function will inject a key with a '' string value.
string | array | $header | Header to parse into components. |
Definition at line 129 of file functions.php.
References $header, $m, PHPMailer\PHPMailer\$params, and GuzzleHttp\Psr7\normalize_header().
GuzzleHttp\Psr7\parse_query | ( | $str, | |
$urlEncoding = true |
|||
) |
Parse a query string into an associative array.
If multiple values are found for the same key, the value of that key value pair will become an array. This function does not parse nested PHP style arrays into an associative array (e.g., foo[a]=1&foo[b]=2 will be parsed into ['foo[a]' => '1', 'foo[b]' => '2']).
string | $str | Query string to parse |
bool | string | $urlEncoding | How the query string is encoded |
Definition at line 524 of file functions.php.
GuzzleHttp\Psr7\parse_request | ( | $message | ) |
Parses a request message string into a request object.
string | $message | Request message string. |
Definition at line 463 of file functions.php.
References $data, $message, $request, $version, GuzzleHttp\Psr7\_parse_message(), and GuzzleHttp\Psr7\_parse_request_uri().
Referenced by soap_server\service(), and nusoap_server\service().
GuzzleHttp\Psr7\parse_response | ( | $message | ) |
Parses a response message string into a response object.
string | $message | Response message string. |
Definition at line 491 of file functions.php.
References $data, $message, and GuzzleHttp\Psr7\_parse_message().
GuzzleHttp\Psr7\readline | ( | StreamInterface | $stream, |
$maxLength = null |
|||
) |
Read a line from the stream up to the maximum allowed buffer length.
StreamInterface | $stream | Stream to read from |
int | $maxLength | Maximum buffer length |
Definition at line 436 of file functions.php.
References $size, Psr\Http\Message\StreamInterface\eof(), and Psr\Http\Message\StreamInterface\read().
GuzzleHttp\Psr7\rewind_body | ( | MessageInterface | $message | ) |
Attempts to rewind a message body and throws an exception on failure.
The body of the message will only be rewound if a call to tell()
returns a value other than 0
.
MessageInterface | $message | Message to rewind |
Definition at line 274 of file functions.php.
References $filename, and Psr\Http\Message\MessageInterface\getBody().
|
private |
Definition at line 143 of file MessageTrait.php.
References $header, and GuzzleHttp\Psr7\trimHeaderValues().
Referenced by GuzzleHttp\Psr7\Request\__construct(), and GuzzleHttp\Psr7\Response\__construct().
GuzzleHttp\Psr7\str | ( | MessageInterface | $message | ) |
Returns the string representation of an HTTP message.
MessageInterface | $message | Message to convert to a string. |
Definition at line 18 of file functions.php.
References $name, $values, Psr\Http\Message\MessageInterface\getBody(), Psr\Http\Message\MessageInterface\getHeaders(), Psr\Http\Message\MessageInterface\getProtocolVersion(), and Psr\Http\Message\MessageInterface\hasHeader().
Referenced by Gettext\Utils\StringReader\__construct(), and Gettext\Utils\StringReader\read().
GuzzleHttp\Psr7\stream_for | ( | $resource = '' , |
|
array | $options = [] |
||
) |
Create a new stream based on the input type.
Options is an associative array that can contain the following keys:
resource | string | null | int | float | bool | StreamInterface | callable | $resource | Entity body data |
array | $options | Additional options |
Definition at line 78 of file functions.php.
References PHPMailer\PHPMailer\$options, $result, and GuzzleHttp\Psr7\$stream.
Referenced by GuzzleHttp\Psr7\Request\__construct(), GuzzleHttp\Psr7\Response\__construct(), GuzzleHttp\Psr7\MultipartStream\addElement(), GuzzleHttp\Psr7\LazyOpenStream\createStream(), GuzzleHttp\Psr7\MultipartStream\createStream(), and GuzzleHttp\Psr7\getBody().
|
private |
Trims whitespace from the header values.
Spaces and tabs ought to be excluded by parsers when extracting the field value from a header field.
header-field = field-name ":" OWS field-value OWS OWS = *( SP / HTAB )
string[] | $values Header values |
Definition at line 177 of file MessageTrait.php.
References $values.
Referenced by GuzzleHttp\Psr7\setHeaders(), GuzzleHttp\Psr7\withAddedHeader(), and GuzzleHttp\Psr7\withHeader().
GuzzleHttp\Psr7\uri_for | ( | $uri | ) |
Returns a UriInterface for the given value.
This function accepts a string or {
UriInterface
, it is returned as-is.string | UriInterface | $uri |
Definition at line 54 of file functions.php.
GuzzleHttp\Psr7\withAddedHeader | ( | $header, | |
$value | |||
) |
Definition at line 86 of file MessageTrait.php.
References $header, and GuzzleHttp\Psr7\trimHeaderValues().
GuzzleHttp\Psr7\withBody | ( | StreamInterface | $body | ) |
Definition at line 132 of file MessageTrait.php.
GuzzleHttp\Psr7\withHeader | ( | $header, | |
$value | |||
) |
Definition at line 67 of file MessageTrait.php.
References $header, and GuzzleHttp\Psr7\trimHeaderValues().
GuzzleHttp\Psr7\withoutHeader | ( | $header | ) |
GuzzleHttp\Psr7\withProtocolVersion | ( | $version | ) |
|
private |
Definition at line 15 of file MessageTrait.php.
Referenced by ilObjSessionGUI\eventsListObject().
|
private |
Definition at line 18 of file MessageTrait.php.
Referenced by ilInitialisation\buildHTTPPath(), ilSoapFunctions\buildHTTPPath(), Sanitizer\cleanUrl(), Sabre\HTTP\Sapi\createFromServerArray(), TCPDF_STATIC\fileGetContents(), GuzzleHttp\Psr7\ServerRequest\fromGlobals(), BaseFacebook\getCurrentUrl(), ilChatroomFormFactory\getGeneralSettingsForm(), ilBaseViewGUI\getHttpPath(), GuzzleHttp\Psr7\getProtocolVersion(), Jumbojett\OpenIDConnectClient\getRedirectURL(), ilTemplate\handleReferer(), Parser\magicLinkCallback(), phpseclib\Net\SFTP\Stream\register(), ilTemplate\show(), ilChatroomServerSettingsTest\testGenerateClientUrlIfDisabled(), ilChatroomServerSettingsTest\testGenerateClientUrlIfEnabled(), ilChatroomServerSettingsTest\testGenerateIliasUrlIfDisabled(), ilChatroomServerSettingsTest\testGenerateIliasUrlIfEnabled(), ilChatroomServerSettingsTest\testGetBaseUrl(), ilChatroomServerSettingsTest\testGetUrl(), wfUrlProtocols(), and ilWikiUtil\wfUrlProtocols().
|
private |
PHP stream implementation.
Definition at line 21 of file MessageTrait.php.
Referenced by GuzzleHttp\Psr7\DroppingStream\__construct(), ZipStream\Stream\__construct(), GuzzleHttp\Psr7\AppendStream\__construct(), GuzzleHttp\Psr7\CachingStream\__construct(), GuzzleHttp\Psr7\LimitStream\__construct(), AMFReader\__construct(), ilFileSystemAbstractionStorage\_copyDirectory(), TCPDF\_putannotsobjs(), TCPDF\_putAPXObject(), TCPDF\_putEmbeddedFiles(), TCPDF\_putfonts(), TCPDF\_putimages(), TCPDF\_putshaders(), TCPDF\_puttruetypeunicode(), TCPDF\_putxobjects(), ZipStream\ZipStream\addFileFromStream(), ZipStreamTest\ZipStreamTest\addLargeFileFileFromPath(), Sabre\Event\Loop\addReadStream(), Sabre\Event\Loop\Loop\addReadStream(), GuzzleHttp\Psr7\AppendStream\addStream(), Sabre\Event\Loop\addWriteStream(), Sabre\Event\Loop\Loop\addWriteStream(), ilPropertyFormGUI\checkInput(), GuzzleHttp\Psr7\AppendStream\close(), Sabre\DAV\Tree\copyNode(), Twig_Tests_LexerTest\countToken(), GuzzleHttp\Psr7\MultipartStream\createElement(), Sabre\VObject\Splitter\VCardTest\createStream(), Sabre\VObject\Splitter\ICalendarTest\createStream(), GuzzleHttp\Psr7\MultipartStream\createStream(), TCPDF_PARSER\decodeStream(), GuzzleHttp\Psr7\FnStream\decorate(), Sabre\CalDAV\Schedule\ScheduleDeliverTest\deliver(), ilFileDataMail\deliverAttachmentsAsZip(), ZipStream\Stream\detach(), TestParser\filterBodyNodes(), Gettext\Extractors\Mo\fromString(), ILIAS\Filesystem\Util\PHPStreamFunctions\fseek(), GuzzleHttp\Psr7\getBody(), Sabre\HTTP\Message\getBodyAsStream(), getid3_matroska\getDefaultStreamInfo(), ilObjBibliographic\getLegacyAbsolutePath(), ilFileSystemAbstractionStorage\getLegacyFullAbsolutePath(), GuzzleHttp\Psr7\AppendStream\getSize(), PhpOffice\PhpSpreadsheet\Shared\OLERead\getStream(), Twig_ExpressionParser\getTest(), Twig_ExpressionParser\getTestNodeClass(), ZipStreamTest\ZipStreamTest\getTmpFileStream(), ilWebAccessCheckerDelivery\handleAccessErrors(), Sabre\DAV\CorePlugin\httpGet(), ILIAS\Filesystem\Stream\Streams\ofString(), Twig_Extensions_TokenParser_Trans\parse(), Twig_TokenParser_Embed\parse(), Twig_TokenParser_With\parse(), Twig_TokenParser_From\parse(), Twig_TokenParser_Extends\parse(), Twig_TokenParser_Macro\parse(), Twig_TokenParser_Sandbox\parse(), Twig_TokenParser_Block\parse(), Twig_TokenParser_For\parse(), Twig_TokenParser_If\parse(), Twig_TokenParser_Use\parse(), Twig_Extensions_Grammar_Body\parse(), Twig_TokenParser_Set\parse(), Twig_TokenParser_AutoEscape\parse(), Twig_TokenParser_Include\parseArguments(), Twig_ExpressionParser\parseArguments(), Twig_ExpressionParser\parseArrayExpression(), Twig_ExpressionParser\parseAssignmentExpression(), Twig_ExpressionParser\parseHashExpression(), Twig_ExpressionParser\parseStringExpression(), Twig_ExpressionParser\parseSubscriptExpression(), Twig_ExpressionParser\parseTestExpression(), ilStudyProgrammeType\processAndStoreIconFile(), ZipStream\File\processPath(), Sabre\DAV\Mock\StreamingFile\put(), ILIAS\Filesystem\Decorator\FilesystemWhitelistDecorator\putStream(), ilUtil\rCopy(), ILIAS\Filesystem\Provider\FlySystem\FlySystemFileStreamAccess\readStream(), League\Flysystem\Adapter\Local\readStream(), League\Flysystem\Adapter\Ftp\readStream(), ilCtrl\redirectToURL(), ILIAS\FileUpload\FileUploadImpl\register(), Sabre\Event\Loop\removeReadStream(), Sabre\Event\Loop\Loop\removeReadStream(), Sabre\Event\Loop\removeWriteStream(), Sabre\Event\Loop\Loop\removeWriteStream(), GuzzleHttp\Psr7\AppendStream\seek(), CAS_Client\serviceMail(), Sabre\VObject\Parser\MimeDir\setInput(), Sabre\DAV\ServerRangeTest\setUp(), ilTemplate\show(), GuzzleHttp\Psr7\stream_for(), ZipStreamTest\ZipStreamTest\testAddFile(), ZipStreamTest\ZipStreamTest\testAddFileFromPath(), ZipStreamTest\ZipStreamTest\testAddFileFromPathWithStorageMethod(), ZipStreamTest\ZipStreamTest\testAddFileFromPsr7Stream(), ZipStreamTest\ZipStreamTest\testAddFileFromPsr7StreamWithFileSizeSet(), ZipStreamTest\ZipStreamTest\testAddFileFromStream(), ZipStreamTest\ZipStreamTest\testAddFileFromStreamWithStorageMethod(), ZipStreamTest\ZipStreamTest\testAddFileNonUtf8NameUtfComment(), ZipStreamTest\ZipStreamTest\testAddFileUtf8NameComment(), ZipStreamTest\ZipStreamTest\testAddFileUtf8NameNonUtfComment(), ZipStreamTest\ZipStreamTest\testAddFileWithStorageMethod(), Twig_Tests_ExpressionParserTest\testArrayExpression(), Twig_Tests_LexerTest\testBigNumbers(), ZipStreamTest\ZipStreamTest\testCreateArchiveWithFlushOptionSet(), ZipStreamTest\ZipStreamTest\testCreateArchiveWithOutputBufferingOffAndFlushOptionSet(), ZipStreamTest\ZipStreamTest\testDecompressFileWithMacUnarchiver(), Twig_Tests_TokenStreamTest\testEndOfTemplateLook(), Twig_Tests_TokenStreamTest\testEndOfTemplateNext(), Sabre\Xml\ServiceTest\testExpectStream(), Twig_Tests_NodeVisitor_OptimizerTest\testForOptimizer(), Twig_Tests_LexerTest\testLegacyConstructorSignature(), Twig_Tests_TokenStreamTest\testLegacyConstructorSignature(), Twig_Tests_EnvironmentTest\testLegacyTokenizeSignature(), Twig_Tests_LexerTest\testLineDirective(), Twig_Tests_LexerTest\testLineDirectiveInline(), Twig_Tests_LexerTest\testNameLabelForFunction(), Twig_Tests_LexerTest\testNameLabelForTag(), Twig_Tests_TokenStreamTest\testNext(), ILIAS\FileUpload\Processor\VirusScannerPreProcessorTest\testNoVirusDetected(), Twig_Tests_LexerTest\testOperatorEndingWithALetterAtTheEndOfALine(), Sabre\Xml\ServiceTest\testParseStream(), Sabre\VObject\Parser\JsonTest\testParseStreamArg(), ILIAS\FileUpload\Processor\PreProcessorManagerImplTest\testProcessInvalidFileWhichShouldGetRejected(), ILIAS\FileUpload\Processor\PreProcessorManagerImplTest\testProcessValidFileWhichShouldSucceed(), ILIAS\FileUpload\Processor\PreProcessorManagerImplTest\testProcessValidFileWithFailingProcessorWhichShouldGetRejected(), ILIAS\FileUpload\Processor\BlacklistExtensionPreProcessorTest\testProcessWhichShouldSucceed(), ILIAS\FileUpload\Processor\FilenameOverridePreProcessorTest\testProcessWhichShouldSucceed(), ILIAS\FileUpload\Processor\WhitelistExtensionPreProcessorTest\testProcessWhichShouldSucceed(), ILIAS\FileUpload\Processor\WhitelistFileHeaderPreProcessorTest\testProcessWhichShouldSucceed(), ILIAS\FileUpload\Processor\BlacklistFileHeaderPreProcessorTest\testProcessWhichShouldSucceed(), ILIAS\FileUpload\Processor\BlacklistExtensionPreProcessorTest\testProcessWithBlacklistedEmptyExtensionWhichShouldGetRejected(), ILIAS\FileUpload\Processor\BlacklistExtensionPreProcessorTest\testProcessWithBlacklistedExtensionWhichShouldGetRejected(), ILIAS\FileUpload\Processor\WhitelistFileHeaderPreProcessorTest\testProcessWithHeaderMismatchWhichShouldGetRejected(), ILIAS\FileUpload\Processor\BlacklistFileHeaderPreProcessorTest\testProcessWithHeaderMismatchWhichShouldGetRejected(), ILIAS\FileUpload\Processor\WhitelistExtensionPreProcessorTest\testProcessWithoutExtensionWhichShouldSucceed(), ILIAS\FileUpload\Processor\PreProcessorManagerImplTest\testProcessWithoutProcessorsWhichShouldSucceed(), ILIAS\FileUpload\Processor\WhitelistExtensionPreProcessorTest\testProcessWithoutWhitelistedExtensionWhichShouldGetRejected(), Sabre\CalDAV\CalendarObjectTest\testPutStream(), Filesystem\Provider\FlySystem\FlySystemFileStreamAccessTest\testPutStreamWhichShouldSucceed(), Filesystem\Provider\FlySystem\FlySystemFileStreamAccessTest\testPutStreamWithDetachedStreamWhichShouldFail(), Filesystem\Provider\FlySystem\FlySystemFileStreamAccessTest\testPutStreamWithGeneralFailureWhichShouldFail(), Sabre\DAV\FSExt\FileTest\testRangeStream(), Sabre\VObject\ReaderTest\testReadStream(), Filesystem\Provider\FlySystem\FlySystemFileStreamAccessTest\testReadStreamWhichShouldSucceed(), Sabre\VObject\ReaderTest\testReadXMLStream(), Twig_Tests_NodeVisitor_OptimizerTest\testRenderBlockOptimizer(), Twig_Tests_NodeVisitor_OptimizerTest\testRenderParentBlockOptimizer(), Twig_Tests_NodeVisitor_OptimizerTest\testRenderVariableBlockOptimizer(), Twig_Tests_ExpressionParserTest\testStringExpression(), Twig_Tests_ExpressionParserTest\testStringExpressionDoesNotConcatenateTwoConsecutiveStrings(), Twig_Tests_LexerTest\testStringWithEscapedDelimiter(), Twig_Tests_LexerTest\testStringWithEscapedInterpolation(), Twig_Tests_LexerTest\testStringWithHash(), Twig_Tests_LexerTest\testStringWithInterpolation(), Twig_Tests_LexerTest\testStringWithNestedInterpolations(), Twig_Tests_LexerTest\testStringWithNestedInterpolationsInBlock(), Twig_Tests_ParserTest\testUnknownTag(), Twig_Tests_ParserTest\testUnknownTagWithoutSuggestions(), Twig_Tests_ExpressionParserTest\testUnknownTest(), Filesystem\Provider\FlySystem\FlySystemFileStreamAccessTest\testUpdateStreamWhichShouldSucceed(), Filesystem\Provider\FlySystem\FlySystemFileStreamAccessTest\testUpdateStreamWithDetachedStreamWhichShouldFail(), Filesystem\Provider\FlySystem\FlySystemFileStreamAccessTest\testUpdateStreamWithGeneralFailureWhichShouldFail(), Filesystem\Provider\FlySystem\FlySystemFileStreamAccessTest\testUpdateStreamWithMissingFileWhichShouldFail(), ILIAS\FileUpload\Processor\VirusScannerPreProcessorTest\testVirusDetected(), Filesystem\Provider\FlySystem\FlySystemFileStreamAccessTest\testWriteStreamWhichShouldSucceed(), Filesystem\Provider\FlySystem\FlySystemFileStreamAccessTest\testWriteStreamWithDetachedStreamWhichShouldFail(), Filesystem\Provider\FlySystem\FlySystemFileStreamAccessTest\testWriteStreamWithExistingFileWhichShouldFail(), Filesystem\Provider\FlySystem\FlySystemFileStreamAccessTest\testWriteStreamWithFailingAdapterWhichShouldFail(), ILIAS\Filesystem\Decorator\FilesystemWhitelistDecorator\updateStream(), ilLoggingErrorFileStorage\write(), League\Flysystem\Adapter\Ftp\write(), League\Flysystem\Adapter\Local\writeStream(), and ILIAS\Filesystem\Decorator\FilesystemWhitelistDecorator\writeStream().
trait GuzzleHttp::Psr7\MessageTrait |
Trait implementing functionality common to requests and responses.
Definition at line 10 of file MessageTrait.php.