By webchick on
Change record status:
Published (View all published change records)
Project:
Introduced in branch:
8.4.x
Introduced in version:
8.4.0
Issue links:
Description:
Previously, the MediaInterface was inconsistent with other entities, because there was no getter/setter methods on the interface for setName() and getName().
This has now been corrected.
Before:
$this->assertEquals('Unnamed', $media->label(), 'The media item was not created with the correct name.');
After:
$this->assertEquals('Unnamed', $media->getName(), 'The media item was not created with the correct name.');
Impacts:
Module developers