Skip to content

Commit

Permalink
Type fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
GromNaN committed Jan 21, 2025
1 parent 1ce91ac commit 0798779
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/Doctrine/ODM/MongoDB/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ public function setUseLazyGhostObject(bool $flag): void

public function isLazyGhostObjectEnabled(): bool
{
return $this->useLazyGhostObject ?? true;
return $this->useLazyGhostObject;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public function __construct(
$this->lifecycleEventManager = new LifecycleEventManager($dm, $this->uow, $dm->getEventManager());
}

/** @param array<mixed> $identifier */
/** @param mixed $identifier */
public function getProxy(ClassMetadata $metadata, $identifier): InternalProxy
{
$className = $metadata->getName();
Expand Down

0 comments on commit 0798779

Please sign in to comment.