Implements \Drupal\Core\Entity\EntityInterface::get().
Overrides ComplexDataInterface::get
public function get($property_name, $langcode = NULL) {
// @todo: Replace by EntityNG implementation once all entity types have been
// converted to use the entity field API.
return isset($this->{$property_name}) ? $this->{$property_name} : NULL;
}