The following property definition:
componentTypes:
type: array
items:
type: string
default:
- resource
- waste
is converted to:
private readonly array|null $componentTypes,
It should be:
private readonly array $componentTypes = ['resource', 'waste'],
The following property definition:
is converted to:
It should be: