error.php
- Pfad:
src/View/chat/partials/error.php - Namespace: -
- Zeilen: 17 | Größe: 406 Bytes
- Geändert: 2025-12-22 01:58:57 | Gescannt: 2025-12-31 10:22:15
Code Hygiene Score: 100
- Dependencies: 100 (25%)
- LOC: 100 (20%)
- Methods: 100 (20%)
- Secrets: 100 (15%)
- Classes: 100 (10%)
- Magic Numbers: 100 (10%)
Keine Issues gefunden.
Code
<?php
/**
* Chat Error Partial
*
* @var string $error Error message to display
* @var string|null $details Optional error details
*/
?>
<div class="chat-error">
<?php if (!empty($details)): ?>
<strong><?= htmlspecialchars($error) ?></strong>
<br><small><?= htmlspecialchars($details) ?></small>
<?php else: ?>
<?= htmlspecialchars($error) ?>
<?php endif; ?>
</div>