Problem/Motivation

In Drupal\language\Entity\ConfigurableLanguage, getName() and getWeight() methods are marked with {@inheritdoc} but there is nothing to inherit. Drupal\language\ConfigurableLanguageInterface has only setName() and setWeight() declarations.

Proposed resolution

Add missing method headers and comments to Drupal\language\ConfigurableLanguageInterface.

Remaining tasks

None

User interface changes

None

API changes

None

Data model changes

None

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

blazey created an issue. See original summary.

blazey’s picture

Issue summary: View changes
blazey’s picture

Status: Needs work » Needs review
FileSize
626 bytes
blazey’s picture

Issue tags: +Novice, +Dublin2016
blazey’s picture

Assigned: blazey » Unassigned
LauraRocks’s picture

Version: 8.2.x-dev » 8.3.x-dev

I'm changing this to version 8.3.x because 8.2 is on RC. I can look into this in Drupalcon Dublin.

Mile23’s picture

Status: Needs review » Closed (works as designed)

Thanks!

Drupal\language\ConfigurableLanguageInterface extends Drupal\Core\Language\LanguageInterface, which defines both getName() and getWeight(), and documents them.