mirror of
https://github.com/Seldaek/monolog.git
synced 2025-10-29 11:26:09 +01:00
Fix build issues
This commit is contained in:
@@ -43,10 +43,10 @@ class ProcessHandler extends AbstractProcessingHandler
|
||||
*/
|
||||
private array $pipes = [];
|
||||
|
||||
private float $timeout;
|
||||
private float $timeout;
|
||||
|
||||
/**
|
||||
* @var array<int, string[]>
|
||||
* @var array<int, list<string>>
|
||||
*/
|
||||
protected const DESCRIPTOR_SPEC = [
|
||||
0 => ['pipe', 'r'], // STDIN is a pipe that the child will read from
|
||||
|
||||
@@ -27,6 +27,8 @@ class SlackWebhookHandler extends AbstractProcessingHandler
|
||||
{
|
||||
/**
|
||||
* Slack Webhook token
|
||||
*
|
||||
* @var non-empty-string
|
||||
*/
|
||||
private string $webhookUrl;
|
||||
|
||||
@@ -36,7 +38,7 @@ class SlackWebhookHandler extends AbstractProcessingHandler
|
||||
private SlackRecord $slackRecord;
|
||||
|
||||
/**
|
||||
* @param string $webhookUrl Slack Webhook URL
|
||||
* @param non-empty-string $webhookUrl Slack Webhook URL
|
||||
* @param string|null $channel Slack channel (encoded ID or name)
|
||||
* @param string|null $username Name of a bot
|
||||
* @param bool $useAttachment Whether the message should be added to Slack as attachment (plain text otherwise)
|
||||
|
||||
@@ -201,6 +201,9 @@ class StreamHandler extends AbstractProcessingHandler
|
||||
fwrite($stream, (string) $record->formatted);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return true
|
||||
*/
|
||||
private function customErrorHandler(int $code, string $msg): bool
|
||||
{
|
||||
$this->errorMessage = preg_replace('{^(fopen|mkdir|fwrite)\(.*?\): }', '', $msg);
|
||||
|
||||
Reference in New Issue
Block a user