When inserting the generated code, indentation is taken from the line the variable is, which may not be correct. E.g.:
readonly class MyDTO
{
public function __construct(
...
private ?string $firstName,
...
) {
}
public function getFirstName(): ?string // <--- indentation is 8 spaces
{
return $this->firstName;
}
}
Could it be possible to add a setting to override the automatic indentation?
When inserting the generated code, indentation is taken from the line the variable is, which may not be correct. E.g.:
Could it be possible to add a setting to override the automatic indentation?