Stand: SMTP-Test, Admin-Mail-Tab, Notifiable-Fix, Lazy-Quill
- Fix: Notifiable-Trait zum User-Model hinzugefuegt (behebt notify()-500er) - Installer: SMTP-Verbindungstest mit EsmtpTransport + Ueberspringen-Link - Admin: Neuer E-Mail-Tab mit SMTP-Konfiguration + Verbindungstest - Admin: Lazy Quill-Initialisierung (nur sichtbare Locale wird geladen) - Uebersetzungen: 17 neue Mail-Keys in allen 6 Sprachen Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
490
vendor/thecodingmachine/safe/generated/8.4/stream.php
vendored
Normal file
490
vendor/thecodingmachine/safe/generated/8.4/stream.php
vendored
Normal file
@@ -0,0 +1,490 @@
|
||||
<?php
|
||||
|
||||
namespace Safe;
|
||||
|
||||
use Safe\Exceptions\StreamException;
|
||||
|
||||
/**
|
||||
* @param resource $context
|
||||
* @param array $options
|
||||
* @return true
|
||||
* @throws StreamException
|
||||
*
|
||||
*/
|
||||
function stream_context_set_options($context, array $options): void
|
||||
{
|
||||
error_clear_last();
|
||||
$safeResult = \stream_context_set_options($context, $options);
|
||||
if ($safeResult === false) {
|
||||
throw StreamException::createFromPhpError();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param resource $context
|
||||
* @param array $params
|
||||
* @throws StreamException
|
||||
*
|
||||
*/
|
||||
function stream_context_set_params($context, array $params): void
|
||||
{
|
||||
error_clear_last();
|
||||
$safeResult = \stream_context_set_params($context, $params);
|
||||
if ($safeResult === false) {
|
||||
throw StreamException::createFromPhpError();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param resource $from
|
||||
* @param resource $to
|
||||
* @param int|null $length
|
||||
* @param int $offset
|
||||
* @return int
|
||||
* @throws StreamException
|
||||
*
|
||||
*/
|
||||
function stream_copy_to_stream($from, $to, ?int $length = null, int $offset = 0): int
|
||||
{
|
||||
error_clear_last();
|
||||
if ($offset !== 0) {
|
||||
$safeResult = \stream_copy_to_stream($from, $to, $length, $offset);
|
||||
} elseif ($length !== null) {
|
||||
$safeResult = \stream_copy_to_stream($from, $to, $length);
|
||||
} else {
|
||||
$safeResult = \stream_copy_to_stream($from, $to);
|
||||
}
|
||||
if ($safeResult === false) {
|
||||
throw StreamException::createFromPhpError();
|
||||
}
|
||||
return $safeResult;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param resource $stream
|
||||
* @param string $filtername
|
||||
* @param int $read_write
|
||||
* @param mixed $params
|
||||
* @return resource
|
||||
* @throws StreamException
|
||||
*
|
||||
*/
|
||||
function stream_filter_append($stream, string $filtername, ?int $read_write = null, $params = null)
|
||||
{
|
||||
error_clear_last();
|
||||
if ($params !== null) {
|
||||
$safeResult = \stream_filter_append($stream, $filtername, $read_write, $params);
|
||||
} elseif ($read_write !== null) {
|
||||
$safeResult = \stream_filter_append($stream, $filtername, $read_write);
|
||||
} else {
|
||||
$safeResult = \stream_filter_append($stream, $filtername);
|
||||
}
|
||||
if ($safeResult === false) {
|
||||
throw StreamException::createFromPhpError();
|
||||
}
|
||||
return $safeResult;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param resource $stream
|
||||
* @param string $filtername
|
||||
* @param int $read_write
|
||||
* @param mixed $params
|
||||
* @return resource
|
||||
* @throws StreamException
|
||||
*
|
||||
*/
|
||||
function stream_filter_prepend($stream, string $filtername, ?int $read_write = null, $params = null)
|
||||
{
|
||||
error_clear_last();
|
||||
if ($params !== null) {
|
||||
$safeResult = \stream_filter_prepend($stream, $filtername, $read_write, $params);
|
||||
} elseif ($read_write !== null) {
|
||||
$safeResult = \stream_filter_prepend($stream, $filtername, $read_write);
|
||||
} else {
|
||||
$safeResult = \stream_filter_prepend($stream, $filtername);
|
||||
}
|
||||
if ($safeResult === false) {
|
||||
throw StreamException::createFromPhpError();
|
||||
}
|
||||
return $safeResult;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param string $filter_name
|
||||
* @param string $class
|
||||
* @throws StreamException
|
||||
*
|
||||
*/
|
||||
function stream_filter_register(string $filter_name, string $class): void
|
||||
{
|
||||
error_clear_last();
|
||||
$safeResult = \stream_filter_register($filter_name, $class);
|
||||
if ($safeResult === false) {
|
||||
throw StreamException::createFromPhpError();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param resource $stream_filter
|
||||
* @throws StreamException
|
||||
*
|
||||
*/
|
||||
function stream_filter_remove($stream_filter): void
|
||||
{
|
||||
error_clear_last();
|
||||
$safeResult = \stream_filter_remove($stream_filter);
|
||||
if ($safeResult === false) {
|
||||
throw StreamException::createFromPhpError();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param resource $stream
|
||||
* @param int|null $length
|
||||
* @param int $offset
|
||||
* @return string
|
||||
* @throws StreamException
|
||||
*
|
||||
*/
|
||||
function stream_get_contents($stream, ?int $length = null, int $offset = -1): string
|
||||
{
|
||||
error_clear_last();
|
||||
if ($offset !== -1) {
|
||||
$safeResult = \stream_get_contents($stream, $length, $offset);
|
||||
} elseif ($length !== null) {
|
||||
$safeResult = \stream_get_contents($stream, $length);
|
||||
} else {
|
||||
$safeResult = \stream_get_contents($stream);
|
||||
}
|
||||
if ($safeResult === false) {
|
||||
throw StreamException::createFromPhpError();
|
||||
}
|
||||
return $safeResult;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param resource $stream
|
||||
* @param int $length
|
||||
* @param string $ending
|
||||
* @return string
|
||||
* @throws StreamException
|
||||
*
|
||||
*/
|
||||
function stream_get_line($stream, int $length, string $ending = ""): string
|
||||
{
|
||||
error_clear_last();
|
||||
$safeResult = \stream_get_line($stream, $length, $ending);
|
||||
if ($safeResult === false) {
|
||||
throw StreamException::createFromPhpError();
|
||||
}
|
||||
return $safeResult;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param resource $stream
|
||||
* @throws StreamException
|
||||
*
|
||||
*/
|
||||
function stream_isatty($stream): void
|
||||
{
|
||||
error_clear_last();
|
||||
$safeResult = \stream_isatty($stream);
|
||||
if ($safeResult === false) {
|
||||
throw StreamException::createFromPhpError();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param string $filename
|
||||
* @return string
|
||||
* @throws StreamException
|
||||
*
|
||||
*/
|
||||
function stream_resolve_include_path(string $filename): string
|
||||
{
|
||||
error_clear_last();
|
||||
$safeResult = \stream_resolve_include_path($filename);
|
||||
if ($safeResult === false) {
|
||||
throw StreamException::createFromPhpError();
|
||||
}
|
||||
return $safeResult;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param resource $stream
|
||||
* @param bool $enable
|
||||
* @throws StreamException
|
||||
*
|
||||
*/
|
||||
function stream_set_blocking($stream, bool $enable): void
|
||||
{
|
||||
error_clear_last();
|
||||
$safeResult = \stream_set_blocking($stream, $enable);
|
||||
if ($safeResult === false) {
|
||||
throw StreamException::createFromPhpError();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param resource $stream
|
||||
* @param int $seconds
|
||||
* @param int $microseconds
|
||||
* @throws StreamException
|
||||
*
|
||||
*/
|
||||
function stream_set_timeout($stream, int $seconds, int $microseconds = 0): void
|
||||
{
|
||||
error_clear_last();
|
||||
$safeResult = \stream_set_timeout($stream, $seconds, $microseconds);
|
||||
if ($safeResult === false) {
|
||||
throw StreamException::createFromPhpError();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param resource $socket
|
||||
* @param float|null $timeout
|
||||
* @param null|string $peer_name
|
||||
* @return resource
|
||||
* @throws StreamException
|
||||
*
|
||||
*/
|
||||
function stream_socket_accept($socket, ?float $timeout = null, ?string &$peer_name = null)
|
||||
{
|
||||
error_clear_last();
|
||||
if ($peer_name !== null) {
|
||||
$safeResult = \stream_socket_accept($socket, $timeout, $peer_name);
|
||||
} elseif ($timeout !== null) {
|
||||
$safeResult = \stream_socket_accept($socket, $timeout);
|
||||
} else {
|
||||
$safeResult = \stream_socket_accept($socket);
|
||||
}
|
||||
if ($safeResult === false) {
|
||||
throw StreamException::createFromPhpError();
|
||||
}
|
||||
return $safeResult;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param string $address
|
||||
* @param int|null $error_code
|
||||
* @param null|string $error_message
|
||||
* @param float|null $timeout
|
||||
* @param int-mask $flags
|
||||
* @param null|resource $context
|
||||
* @return resource
|
||||
* @throws StreamException
|
||||
*
|
||||
*/
|
||||
function stream_socket_client(string $address, ?int &$error_code = null, ?string &$error_message = null, ?float $timeout = null, int $flags = STREAM_CLIENT_CONNECT, $context = null)
|
||||
{
|
||||
error_clear_last();
|
||||
if ($context !== null) {
|
||||
$safeResult = \stream_socket_client($address, $error_code, $error_message, $timeout, $flags, $context);
|
||||
} elseif ($flags !== STREAM_CLIENT_CONNECT) {
|
||||
$safeResult = \stream_socket_client($address, $error_code, $error_message, $timeout, $flags);
|
||||
} elseif ($timeout !== null) {
|
||||
$safeResult = \stream_socket_client($address, $error_code, $error_message, $timeout);
|
||||
} else {
|
||||
$safeResult = \stream_socket_client($address, $error_code, $error_message);
|
||||
}
|
||||
if ($safeResult === false) {
|
||||
throw StreamException::createFromPhpError();
|
||||
}
|
||||
return $safeResult;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param resource $socket
|
||||
* @param bool $remote
|
||||
* @return string
|
||||
* @throws StreamException
|
||||
*
|
||||
*/
|
||||
function stream_socket_get_name($socket, bool $remote): string
|
||||
{
|
||||
error_clear_last();
|
||||
$safeResult = \stream_socket_get_name($socket, $remote);
|
||||
if ($safeResult === false) {
|
||||
throw StreamException::createFromPhpError();
|
||||
}
|
||||
return $safeResult;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param int $domain
|
||||
* @param int $type
|
||||
* @param int $protocol
|
||||
* @return resource[]
|
||||
* @throws StreamException
|
||||
*
|
||||
*/
|
||||
function stream_socket_pair(int $domain, int $type, int $protocol): array
|
||||
{
|
||||
error_clear_last();
|
||||
$safeResult = \stream_socket_pair($domain, $type, $protocol);
|
||||
if ($safeResult === false) {
|
||||
throw StreamException::createFromPhpError();
|
||||
}
|
||||
return $safeResult;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param resource $socket
|
||||
* @param int $length
|
||||
* @param int $flags
|
||||
* @param null|string $address
|
||||
* @return string
|
||||
* @throws StreamException
|
||||
*
|
||||
*/
|
||||
function stream_socket_recvfrom($socket, int $length, int $flags = 0, ?string &$address = null): string
|
||||
{
|
||||
error_clear_last();
|
||||
$safeResult = \stream_socket_recvfrom($socket, $length, $flags, $address);
|
||||
if ($safeResult === false) {
|
||||
throw StreamException::createFromPhpError();
|
||||
}
|
||||
return $safeResult;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param resource $socket
|
||||
* @param string $data
|
||||
* @param int $flags
|
||||
* @param string $address
|
||||
* @return int
|
||||
* @throws StreamException
|
||||
*
|
||||
*/
|
||||
function stream_socket_sendto($socket, string $data, int $flags = 0, string $address = ""): int
|
||||
{
|
||||
error_clear_last();
|
||||
$safeResult = \stream_socket_sendto($socket, $data, $flags, $address);
|
||||
if ($safeResult === false) {
|
||||
throw StreamException::createFromPhpError();
|
||||
}
|
||||
return $safeResult;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param string $address
|
||||
* @param int|null $error_code
|
||||
* @param null|string $error_message
|
||||
* @param int $flags
|
||||
* @param null|resource $context
|
||||
* @return resource
|
||||
* @throws StreamException
|
||||
*
|
||||
*/
|
||||
function stream_socket_server(string $address, ?int &$error_code = null, ?string &$error_message = null, int $flags = STREAM_SERVER_BIND | STREAM_SERVER_LISTEN, $context = null)
|
||||
{
|
||||
error_clear_last();
|
||||
if ($context !== null) {
|
||||
$safeResult = \stream_socket_server($address, $error_code, $error_message, $flags, $context);
|
||||
} else {
|
||||
$safeResult = \stream_socket_server($address, $error_code, $error_message, $flags);
|
||||
}
|
||||
if ($safeResult === false) {
|
||||
throw StreamException::createFromPhpError();
|
||||
}
|
||||
return $safeResult;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param resource $stream
|
||||
* @param int $mode
|
||||
* @throws StreamException
|
||||
*
|
||||
*/
|
||||
function stream_socket_shutdown($stream, int $mode): void
|
||||
{
|
||||
error_clear_last();
|
||||
$safeResult = \stream_socket_shutdown($stream, $mode);
|
||||
if ($safeResult === false) {
|
||||
throw StreamException::createFromPhpError();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param resource $stream
|
||||
* @throws StreamException
|
||||
*
|
||||
*/
|
||||
function stream_supports_lock($stream): void
|
||||
{
|
||||
error_clear_last();
|
||||
$safeResult = \stream_supports_lock($stream);
|
||||
if ($safeResult === false) {
|
||||
throw StreamException::createFromPhpError();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param string $protocol
|
||||
* @param string $class
|
||||
* @param int $flags
|
||||
* @throws StreamException
|
||||
*
|
||||
*/
|
||||
function stream_wrapper_register(string $protocol, string $class, int $flags = 0): void
|
||||
{
|
||||
error_clear_last();
|
||||
$safeResult = \stream_wrapper_register($protocol, $class, $flags);
|
||||
if ($safeResult === false) {
|
||||
throw StreamException::createFromPhpError();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param string $protocol
|
||||
* @throws StreamException
|
||||
*
|
||||
*/
|
||||
function stream_wrapper_restore(string $protocol): void
|
||||
{
|
||||
error_clear_last();
|
||||
$safeResult = \stream_wrapper_restore($protocol);
|
||||
if ($safeResult === false) {
|
||||
throw StreamException::createFromPhpError();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param string $protocol
|
||||
* @throws StreamException
|
||||
*
|
||||
*/
|
||||
function stream_wrapper_unregister(string $protocol): void
|
||||
{
|
||||
error_clear_last();
|
||||
$safeResult = \stream_wrapper_unregister($protocol);
|
||||
if ($safeResult === false) {
|
||||
throw StreamException::createFromPhpError();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user