ws works for testing

This commit is contained in:
GitProtogen
2026-03-05 09:10:33 +01:00
parent c08937b613
commit 06b476b7cd
3 changed files with 103 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
<?php
namespace ComCen\Html;
class Html
{
public string $content = "";
function renderContent(): void
{
echo $this->content;
}
}