# DuplicateArrayKey Emitted when an array has a key more than once ```php 'one', 'b' => 'two', 'c' => 'this text will be overwritten by the next line', 'c' => 'three', ]; ``` This can be caused by variadic arguments if `@no-named-arguments` is not specified: ```php since it can have named arguments } ``` ## How to fix Remove the offending duplicates: ```php 'one', 'b' => 'two', 'c' => 'three', ]; ``` The first matching `'c'` key was removed to prevent a change in behaviour (any new duplicate keys overwrite the values of previous ones).