Files
iblogs/src/Api/Response/CodexLogResponse.php
Sam Kintop bf3870ccca
Some checks failed
Publish Docker Image / build-and-push (push) Failing after 2m13s
all
2026-04-30 09:44:02 -05:00

17 lines
351 B
PHP

<?php
namespace Aternos\Mclogs\Api\Response;
use Aternos\Codex\Log\LogInterface;
class CodexLogResponse extends ApiResponse
{
public function __construct(protected LogInterface $codexLog)
{
}
public function jsonSerialize(): array
{
return array_merge(parent::jsonSerialize(), $this->codexLog->jsonSerialize());
}
}