Same filename and directory in other branches
  1. 8.9.x core/lib/Drupal/Core/TypedData/DataReferenceInterface.php
  2. 9 core/lib/Drupal/Core/TypedData/DataReferenceInterface.php

Namespace

Drupal\Core\TypedData

File

core/lib/Drupal/Core/TypedData/DataReferenceInterface.php
View source
<?php

namespace Drupal\Core\TypedData;


/**
 * Interface for typed data references.
 *
 * @see \Drupal\Core\TypedData\DataReferenceDefinitionInterface
 */
interface DataReferenceInterface {

  /**
   * Gets the referenced data.
   *
   * @return \Drupal\Core\TypedData\TypedDataInterface|null
   *   The referenced typed data object, or NULL if the reference is unset.
   */
  public function getTarget();

  /**
   * Gets the identifier of the referenced data.
   *
   * @return int|string|null
   *   The identifier of the referenced data, or NULL if the reference is unset.
   */
  public function getTargetIdentifier();

}

Interfaces

Namesort descending Description
DataReferenceInterface Interface for typed data references.