summaryrefslogtreecommitdiff
path: root/vendor/thecodingmachine/safe/generated/apache.php
diff options
context:
space:
mode:
authorwn_ <invalid@email.com>2024-12-09 17:58:28 +0000
committerwn_ <invalid@email.com>2024-12-09 17:58:28 +0000
commitf6a8facfd4bfc40025c069eebc37094d826aff58 (patch)
tree871aab0d8adafe736d954cae1783c260699c0ec3 /vendor/thecodingmachine/safe/generated/apache.php
parentcd2c10f9f71409df24fc74c1bbd7d5ddbf48d991 (diff)
Bump 'spomky-labs/otphp' to 11.3.x.
This is mainly for PHP 8.4 compatibility.
Diffstat (limited to 'vendor/thecodingmachine/safe/generated/apache.php')
-rw-r--r--vendor/thecodingmachine/safe/generated/apache.php199
1 files changed, 0 insertions, 199 deletions
diff --git a/vendor/thecodingmachine/safe/generated/apache.php b/vendor/thecodingmachine/safe/generated/apache.php
deleted file mode 100644
index 2bb3632a9..000000000
--- a/vendor/thecodingmachine/safe/generated/apache.php
+++ /dev/null
@@ -1,199 +0,0 @@
-<?php
-
-namespace Safe;
-
-use Safe\Exceptions\ApacheException;
-
-/**
- * Fetch the Apache version.
- *
- * @return string Returns the Apache version on success.
- * @throws ApacheException
- *
- */
-function apache_get_version(): string
-{
- error_clear_last();
- $result = \apache_get_version();
- if ($result === false) {
- throw ApacheException::createFromPhpError();
- }
- return $result;
-}
-
-
-/**
- * Retrieve an Apache environment variable specified by
- * variable.
- *
- * @param string $variable The Apache environment variable
- * @param bool $walk_to_top Whether to get the top-level variable available to all Apache layers.
- * @return string The value of the Apache environment variable on success
- * @throws ApacheException
- *
- */
-function apache_getenv(string $variable, bool $walk_to_top = false): string
-{
- error_clear_last();
- $result = \apache_getenv($variable, $walk_to_top);
- if ($result === false) {
- throw ApacheException::createFromPhpError();
- }
- return $result;
-}
-
-
-/**
- * This performs a partial request for a URI. It goes just far
- * enough to obtain all the important information about the given
- * resource.
- *
- * @param string $filename The filename (URI) that's being requested.
- * @return object An object of related URI information. The properties of
- * this object are:
- *
- *
- * status
- * the_request
- * status_line
- * method
- * content_type
- * handler
- * uri
- * filename
- * path_info
- * args
- * boundary
- * no_cache
- * no_local_copy
- * allowed
- * send_bodyct
- * bytes_sent
- * byterange
- * clength
- * unparsed_uri
- * mtime
- * request_time
- *
- *
- * Returns FALSE on failure.
- * @throws ApacheException
- *
- */
-function apache_lookup_uri(string $filename): object
-{
- error_clear_last();
- $result = \apache_lookup_uri($filename);
- if ($result === false) {
- throw ApacheException::createFromPhpError();
- }
- return $result;
-}
-
-
-/**
- * Fetches all HTTP request headers from the current request. Works in the
- * Apache, FastCGI, CLI, and FPM webservers.
- *
- * @return array An associative array of all the HTTP headers in the current request.
- * @throws ApacheException
- *
- */
-function apache_request_headers(): array
-{
- error_clear_last();
- $result = \apache_request_headers();
- if ($result === false) {
- throw ApacheException::createFromPhpError();
- }
- return $result;
-}
-
-
-/**
- * Fetch all HTTP response headers. Works in the
- * Apache, FastCGI, CLI, and FPM webservers.
- *
- * @return array An array of all Apache response headers on success.
- * @throws ApacheException
- *
- */
-function apache_response_headers(): array
-{
- error_clear_last();
- $result = \apache_response_headers();
- if ($result === false) {
- throw ApacheException::createFromPhpError();
- }
- return $result;
-}
-
-
-/**
- * apache_setenv sets the value of the Apache
- * environment variable specified by
- * variable.
- *
- * @param string $variable The environment variable that's being set.
- * @param string $value The new variable value.
- * @param bool $walk_to_top Whether to set the top-level variable available to all Apache layers.
- * @throws ApacheException
- *
- */
-function apache_setenv(string $variable, string $value, bool $walk_to_top = false): void
-{
- error_clear_last();
- $result = \apache_setenv($variable, $value, $walk_to_top);
- if ($result === false) {
- throw ApacheException::createFromPhpError();
- }
-}
-
-
-/**
- * Fetches all HTTP headers from the current request.
- *
- * This function is an alias for apache_request_headers.
- * Please read the apache_request_headers
- * documentation for more information on how this function works.
- *
- * @return array An associative array of all the HTTP headers in the current request.
- * @throws ApacheException
- *
- */
-function getallheaders(): array
-{
- error_clear_last();
- $result = \getallheaders();
- if ($result === false) {
- throw ApacheException::createFromPhpError();
- }
- return $result;
-}
-
-
-/**
- * virtual is an Apache-specific function which
- * is similar to &lt;!--#include virtual...--&gt; in
- * mod_include.
- * It performs an Apache sub-request. It is useful for including
- * CGI scripts or .shtml files, or anything else that you would
- * parse through Apache. Note that for a CGI script, the script
- * must generate valid CGI headers. At the minimum that means it
- * must generate a Content-Type header.
- *
- * To run the sub-request, all buffers are terminated and flushed to the
- * browser, pending headers are sent too.
- *
- * @param string $uri The file that the virtual command will be performed on.
- * @throws ApacheException
- *
- */
-function virtual(string $uri): void
-{
- error_clear_last();
- $result = \virtual($uri);
- if ($result === false) {
- throw ApacheException::createFromPhpError();
- }
-}