build(php): upgrade min php version to 8.3

This commit is contained in:
Yassine Doghri 2024-05-29 10:24:13 +00:00
commit b5bd2db28f
182 changed files with 517 additions and 115 deletions

View file

@ -5,6 +5,7 @@ declare(strict_types=1);
namespace ViewComponents;
use CodeIgniter\View\ViewDecoratorInterface;
use Override;
/**
* Enables rendering of View Components into the views.
@ -15,6 +16,7 @@ class Decorator implements ViewDecoratorInterface
{
private static ?ComponentRenderer $components = null;
#[Override]
public static function decorate(string $html): string
{
$components = self::factory();