Implement `UploadedFileConstraintArrayOptionsToNamedArgsRector`
### Problem/Motivation
Replace the deprecated options-array argument of UploadedFileConstraint with explicit named constructor arguments. Symfony validator 7.4 deprecated passing an associative array as the first argument to Constraint constructors; Drupal's UploadedFileConstraint follows suit. Deprecated in Drupal 11.4.0 and removed in 12.0.0. The named-argument constructor only exists on Drupal >= 11.4.0, so the transformation is backwards-compatibility wrapped.
### Proposed resolution
Handled automatically by drupal-rector via the `UploadedFileConstraintArrayOptionsToNamedArgsRector` rule.
### How this rule was built
This rule was produced with an AI-assisted workflow in which every step was verified manually by @bbrala. Its logic started from the matching drupal-digests entry, which was adapted to drupal-rector's conventions — a dedicated rule or an existing upstream rule configured into the Drupal 12 set — and covered with before/after test fixtures. Backward-compatibility was assessed and version-gated: safe rewrites are applied directly, while unsafe ones are wrapped via `DeprecationHelper` or moved to an opt-in breaking set. The rule was then live-tested against a set of contributed modules; where no contrib call site could be found, a static code sample was written in a test module to exercise it. A final automated QA pass covered type-guard, fixture coverage, BC-decision, registration and idempotency checks.
### References
- Change record(s): [CR-3554746](https://www.drupal.org/node/3554746)
- Related issue(s): [#3561135](https://www.drupal.org/i/3561135), [#3555134](https://www.drupal.org/i/3555134), [#3555534](https://www.drupal.org/i/3555534)
### Work items
- Commit(s): [52051970f7](https://github.com/palantirnet/drupal-rector/commit/52051970f798)
- Pull request(s): [PR #350](https://github.com/palantirnet/drupal-rector/pull/350)
### Credit
- Implemented by: @bbrala
- Reviewed / helped by: @mglaman
---
*Filed retroactively as part of the Drupal 12 rector coverage effort. Closed as fixed; credit to be applied to the contributors listed above.*
*AI was used extensively to build this rule and to file this issue. See [Dries Buytaert: AI-generated Rector rules for Drupal](https://dri.es/ai-generated-rector-rules-for-drupal) and [Björn Brala: Drupal Rector rules are config, not code. Mostly.](https://www.linkedin.com/pulse/drupal-rector-rules-config-code-mostly-bj%C3%B6rn-brala-vfpwe/).*
issue