- Add comprehensive health check system with multiple endpoints - Add Prometheus metrics endpoint - Add production logging configurations (5 strategies) - Add complete deployment documentation suite: * QUICKSTART.md - 30-minute deployment guide * DEPLOYMENT_CHECKLIST.md - Printable verification checklist * DEPLOYMENT_WORKFLOW.md - Complete deployment lifecycle * PRODUCTION_DEPLOYMENT.md - Comprehensive technical reference * production-logging.md - Logging configuration guide * ANSIBLE_DEPLOYMENT.md - Infrastructure as Code automation * README.md - Navigation hub * DEPLOYMENT_SUMMARY.md - Executive summary - Add deployment scripts and automation - Add DEPLOYMENT_PLAN.md - Concrete plan for immediate deployment - Update README with production-ready features All production infrastructure is now complete and ready for deployment.
47 lines
904 B
PHP
47 lines
904 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Domain\SmartLink\ValueObjects;
|
|
|
|
use App\Framework\DateTime\Clock;
|
|
use App\Framework\Ulid\Ulid;
|
|
|
|
final readonly class ClickId
|
|
{
|
|
private function __construct(
|
|
private string $value
|
|
) {
|
|
if (! Ulid::isValid($value)) {
|
|
throw new \InvalidArgumentException('Invalid Click ID format');
|
|
}
|
|
}
|
|
|
|
public static function generate(Clock $clock): self
|
|
{
|
|
$ulid = new Ulid($clock);
|
|
|
|
return new self($ulid->__toString());
|
|
}
|
|
|
|
public static function fromString(string $value): self
|
|
{
|
|
return new self($value);
|
|
}
|
|
|
|
public function toString(): string
|
|
{
|
|
return $this->value;
|
|
}
|
|
|
|
public function equals(self $other): bool
|
|
{
|
|
return $this->value === $other->value;
|
|
}
|
|
|
|
public function __toString(): string
|
|
{
|
|
return $this->value;
|
|
}
|
|
}
|