The DocBlock for Fields::new() is:
* @method Field new($type, $name, $label = '') Create and save a new Field of the given type (3.0.258+)
But the actual ___new() method has a default value for the $name parameter, and the third parameter is now the $options array, so the DocBlock should be updated to:
* @method Field new($type, $name = '', $options = []) Create and save a new Field of the given type (3.0.258+)
Otherwise IDEs give warning highlighting for a missing required parameter when using an array for the first argument and therefore omitting the $name and $option arguments.

The DocBlock for Fields::new() is:
But the actual
___new()method has a default value for the$nameparameter, and the third parameter is now the$optionsarray, so the DocBlock should be updated to:Otherwise IDEs give warning highlighting for a missing required parameter when using an array for the first argument and therefore omitting the
$nameand$optionarguments.