graph = $graph; $this->entity = $entity; } /** * Getter. * * @param string $name * The name. * * @return mixed * The value. * * @since 2.0.0 */ public function __get($name) { switch ($name) { case 'id': return $this->entity->getId(); default: throw new \Exception("Undefined property: $name"); } } }