crazy stuff

This commit is contained in:
2026-01-07 21:42:18 +02:00
parent 57b0727788
commit 874ddd33e2
41 changed files with 5580 additions and 5039 deletions
+10
View File
@@ -0,0 +1,10 @@
<?php namespace Lucent\Core\Schema\Data;
class Field
{
public function __construct(
public string $id,
public string $label,
public string $type,
) {}
}
+15
View File
@@ -0,0 +1,15 @@
<?php namespace Lucent\Core\Schema\Data;
class Schema
{
/**
* @param string $id
* @param string $label
* @param Field[] $fields
*/
public function __construct(
public string $id,
public string $label,
public array $fields,
) {}
}
+9
View File
@@ -0,0 +1,9 @@
<?php namespace Lucent\Core\Schema;
class SchemaModule
{
public function __construct()
{
// Constructor logic here
}
}