Change record status: 
Project: 
Introduced in branch: 
8.4.x
Introduced in version: 
8.4.0
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