Change rule names in array example

This commit is contained in:
Federico Jaramillo Martínez 2018-10-11 10:12:38 -05:00 committed by GitHub
parent b9222cf421
commit 8e5ca9be38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -159,16 +159,15 @@ rules:
would be if there was no key clash. Other than in this key-clash situation, within the particular array, order is preserved. To override a value that is an array, the value must first be set to `null`, and then set again to the new array. would be if there was no key clash. Other than in this key-clash situation, within the particular array, order is preserved. To override a value that is an array, the value must first be set to `null`, and then set again to the new array.
```yml ```yml
--- ---
Name: rulereset Name: arrayreset
--- ---
Class\With\Array\Config: Class\With\Array\Config:
an_array: null an_array: null
--- ---
Name: rule Name: array
--- ---
Class\With\Array\Config: Class\With\Array\Config:
an_array: ['value_a', 'value_b'] an_array: ['value_a', 'value_b']
---
``` ```
- If the value is not an array, the highest priority value is used without any attempt to merge - If the value is not an array, the highest priority value is used without any attempt to merge