Skip to content

Commit

Permalink
Update src/Annotations/AbstractAnnotation.php
Browse files Browse the repository at this point in the history
Co-authored-by: Martin Rademacher <[email protected]>
  • Loading branch information
koriym and DerManoMann authored Sep 11, 2023
1 parent 5384875 commit c1120fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Annotations/AbstractAnnotation.php
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public function __set($property, $value)
foreach (static::$_blacklist as $_property) {
unset($fields[$_property]);
}
Logger::notice('Ignoring unexpected field "' . $property . '" for ' . $this->identity() . ', expecting "' . implode('", "', array_keys($fields)) . '" in ' . $this->_context);
Logger::notice('Ignoring unexpected property "' . $property . '" for ' . $this->identity() . ', expecting "' . implode('", "', array_keys($fields)) . '" in ' . $this->_context);
}

/**
Expand Down

0 comments on commit c1120fc

Please sign in to comment.