Compare commits

...

2 Commits

Author SHA1 Message Date
Guy Sartorelli
a1db11575e
Merge 9581025e6c into ebbd6427b2 2024-10-12 05:30:37 +13: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;
}