build: set minimal php version to 8.1

closes #225
This commit is contained in:
Yassine Doghri 2022-10-17 14:17:50 +00:00
commit 3a57538572
59 changed files with 417 additions and 399 deletions

View file

@ -41,7 +41,7 @@ class DropdownMenu extends Component
]);
break;
case 'html':
$menuItems .= htmlspecialchars_decode($item['content']);
$menuItems .= htmlspecialchars_decode((string) $item['content']);
break;
case 'separator':
$menuItems .= '<hr class="my-2 border border-subtle">';