Compare commits

...

2 Commits

Author SHA1 Message Date
Guy Sartorelli
ff8e697dfa
Merge 9581025e6c1d6093153e6c1a54b6e7505ba81caa into c224a84b3a0ff75f85eb5ce0f6cdc19bcde29116 2024-09-27 05:30:35 +12:00
Guy Sartorelli
9581025e6c
API Deprecate ViewableData::Me() 2024-05-17 14:20:55 +12:00

View File

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