Merge 9581025e6c1d6093153e6c1a54b6e7505ba81caa into c224a84b3a0ff75f85eb5ce0f6cdc19bcde29116

This commit is contained in:
Guy Sartorelli 2024-09-27 05:30:35 +12:00 committed by GitHub
commit ff8e697dfa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -678,9 +678,13 @@ class ViewableData implements IteratorAggregate
* access to itself. * access to itself.
* *
* @return ViewableData * @return ViewableData
* @deprecated 5.3.0 Will be replaced with special handling in templates.
*/ */
public function Me() public function Me()
{ {
Deprecation::withNoReplacement(
fn () => Deprecation::notice('5.3.0', 'Will be replaced with special handling in templates.')
);
return $this; return $this;
} }