diff --git a/src/Tin.php b/src/Tin.php index 06aea4e..5f3ba0f 100644 --- a/src/Tin.php +++ b/src/Tin.php @@ -10,7 +10,7 @@ public function __construct(protected Theme $theme) { } - /** @param Theme|class-string $theme */ + /** @param Theme|class-string $theme */ public static function from(Theme|string $theme): self { return new self(is_string($theme) ? new $theme() : $theme);