Skip to content

Commit

Permalink
Merge pull request #875 from doctrine/5.1.x-merge-up-into-5.2.x_BvwcQcXv
Browse files Browse the repository at this point in the history
Merge release 5.1.2 into 5.2.x
  • Loading branch information
GromNaN authored Jan 5, 2025
2 parents 97a7737 + 08b29d4 commit 26f5eb8
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion src/Attribute/MapDocument.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,12 @@

use Attribute;
use Doctrine\Bundle\MongoDBBundle\ArgumentResolver\DocumentValueResolver;
use RuntimeException;
use Symfony\Bridge\Doctrine\Attribute\MapEntity;

use function is_string;
use function property_exists;

#[Attribute(Attribute::TARGET_PARAMETER)]
class MapDocument extends MapEntity
{
Expand All @@ -21,7 +25,20 @@ public function __construct(
public array|string|null $id = null,
bool $disabled = false,
string $resolver = DocumentValueResolver::class,
public ?string $message = null,
) {
parent::__construct($class, $objectManager, $expr, $mapping, $exclude, $stripNull, $id, null, $disabled, $resolver);
if (! is_string($this->message)) {
parent::__construct($class, $objectManager, $expr, $mapping, $exclude, $stripNull, $id, null, $disabled, $resolver);

return;
}

if (! property_exists(MapEntity::class, 'message')) {
throw new RuntimeException(
'The "message" options is not supported at "MapDocument". Please upgrade "symfony/doctrine-bridge" to "^7.1".',
);
}

parent::__construct($class, $objectManager, $expr, $mapping, $exclude, $stripNull, $id, null, $disabled, $resolver, $message);
}
}

0 comments on commit 26f5eb8

Please sign in to comment.