We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a2c329 commit 3376482Copy full SHA for 3376482
app/Models/DeploymentData.php
@@ -16,7 +16,7 @@ class DeploymentData extends Data
16
{
17
public function __construct(
18
public string $networkName,
19
- #[Max(16)]
+ #[Max(22)]
20
public string $internalDomain,
21
#[DataCollectionOf(Process::class)]
22
#[Rule(new UniqueInArray('name'))]
app/Models/DeploymentData/Process.php
@@ -23,7 +23,7 @@
23
class Process extends Data
24
25
26
- #[Max(22)]
+ #[Max(16)]
27
public string $name,
28
#[Exists(Node::class, 'id')]
29
#[RequiredWith('volumes')]
0 commit comments