public function EntityBCDecorator::__isset

Implements the magic method for isset().

File

drupal/core/lib/Drupal/Core/Entity/EntityBCDecorator.php, line 193
Contains \Drupal\Core\Entity\EntityBCDecorator.

Class

EntityBCDecorator
Provides backwards compatible (BC) access to entity fields.

Namespace

Drupal\Core\Entity

Code

public function __isset($name) {
  $value = $this
    ->__get($name);
  return isset($value);
}