Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: sonata-project/SonataAdminBundle
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 485f66b4c9869ca21655dff056baa6dfc62df60c
Choose a base ref
..
head repository: sonata-project/SonataAdminBundle
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3ce964dbb881d5523d04a989d99c11aefdcae392
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +2 −2 src/Form/DataTransformer/ArrayToModelTransformer.php
4 changes: 2 additions & 2 deletions src/Form/DataTransformer/ArrayToModelTransformer.php
Original file line number Diff line number Diff line change
@@ -49,11 +49,11 @@ public function __construct(ModelManagerInterface $modelManager, $className)
}

/**
* @param object|array[]|null $value
* @param object|array<string, mixed>|null $value
*
* @return object
*
* @phpstan-param T|array[]|null $value
* @phpstan-param T|array<string, mixed>|null $value
*
* @phpstan-return T
*/