⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
toner-aktuell.de
/
vendor
/
enqueue
/
null
/
View File Name :
NullMessage.php
<?php declare(strict_types=1); namespace Enqueue\Null; use Interop\Queue\Message; class NullMessage implements Message { /** * @var string */ private $body; /** * @var array */ private $properties; /** * @var array */ private $headers; /** * @var bool */ private $redelivered; public function __construct(string $body = '', array $properties = [], array $headers = []) { $this->body = $body; $this->properties = $properties; $this->headers = $headers; $this->redelivered = false; } public function setBody(string $body): void { $this->body = $body; } public function getBody(): string { return $this->body; } public function setProperties(array $properties): void { $this->properties = $properties; } public function getProperties(): array { return $this->properties; } public function setProperty(string $name, $value): void { $this->properties[$name] = $value; } public function getProperty(string $name, $default = null) { return array_key_exists($name, $this->properties) ? $this->properties[$name] : $default; } public function setHeaders(array $headers): void { $this->headers = $headers; } public function getHeaders(): array { return $this->headers; } public function setHeader(string $name, $value): void { $this->headers[$name] = $value; } public function getHeader(string $name, $default = null) { return array_key_exists($name, $this->headers) ? $this->headers[$name] : $default; } public function isRedelivered(): bool { return $this->redelivered; } public function setRedelivered(bool $redelivered): void { $this->redelivered = $redelivered; } public function setCorrelationId(string $correlationId = null): void { $headers = $this->getHeaders(); $headers['correlation_id'] = (string) $correlationId; $this->setHeaders($headers); } public function getCorrelationId(): ?string { return $this->getHeader('correlation_id'); } public function setMessageId(string $messageId = null): void { $headers = $this->getHeaders(); $headers['message_id'] = (string) $messageId; $this->setHeaders($headers); } public function getMessageId(): ?string { return $this->getHeader('message_id'); } public function getTimestamp(): ?int { $value = $this->getHeader('timestamp'); return null === $value ? null : (int) $value; } public function setTimestamp(int $timestamp = null): void { $headers = $this->getHeaders(); $headers['timestamp'] = (int) $timestamp; $this->setHeaders($headers); } public function setReplyTo(string $replyTo = null): void { $this->setHeader('reply_to', $replyTo); } public function getReplyTo(): ?string { return $this->getHeader('reply_to'); } }