Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
disallowedAttributes
(named) params can also be an array (#190)
Fix `disallowedAttributes`, otherwise it won't accept: ```php 'disallowedAttributes' => [ [ 'attribute' => Doctrine\ORM\Mapping\Entity::class, 'message' => 'every entity requires a repository class.', 'allowParamsAnywhereAnyValue' => [ [ 'position' => 1, 'name' => 'repositoryClass', ], ], ], ], ``` ``` Invalid configuration: The item 'parameters › disallowedAttributes › 0 › allowParamsAnywhereAnyValue › 0' expects to be string, array given. Invalid configuration: The item 'parameters › disallowedAttributes › 0 › allowParamsAnywhereAnyValue › 0' expects to be int|string|bool, array given. ```
- Loading branch information