This commit is contained in:
2023-10-02 23:10:49 +03:00
commit c6cb488379
255 changed files with 18731 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
<?php
namespace Lucent\Channel;
use Lucent\Primitive\Collection;
use Lucent\Schema\Schema;
final class Channel
{
public string $lucentUrl;
public string $filesUrl;
/**
* @param Collection<Schema> $schemas
*/
function __construct(
public string $name,
public string $url,
public Collection $schemas,
public array $imageFilters,
// public Collection $previewTargets,
)
{
$this->lucentUrl = $url . "/lucent";
$this->filesUrl = $url . "/storage";
}
}