Currently I'm only able to get :
public function __construct(
#[Required,
StringType,
In(['primary', 'secondary'])]
public string $type,
What I'd like it it to just be:
public function __construct(
#[Required, StringType, In(['primary', 'secondary'])]
public string $type,
)
or even:
public function __construct(
#[
Required,
StringType,
In(['primary', 'secondary'])
]
public string $type,
)
Currently I'm only able to get :
What I'd like it it to just be:
or even: