Skip to content

Commit

Permalink
pkp#10823 Fixed notice warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasraoni committed Jan 19, 2025
1 parent e6c8a97 commit dfae6bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions classes/metadata/MetadataDataObjectAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ public function __construct($filterGroup, $mode = null)
// extracting meta-data.
$metadataTypeDescription = null; /** @var MetadataTypeDescription $metadataTypeDescription */
$dataObjectTypeDescription = null; /** @var ClassTypeDescription $dataObjectTypeDescription */
$inputType = & $this->getInputType();
$outputType = & $this->getOutputType();
$inputType = $this->getInputType();
$outputType = $this->getOutputType();
if (is_null($mode)) {
if ($inputType instanceof \PKP\metadata\MetadataTypeDescription) {
$mode = self::METADATA_DOA_INJECTION_MODE;
Expand Down

0 comments on commit dfae6bd

Please sign in to comment.