Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

UuidReferenceInterface.php

Namespace

Drupal\serialization\EntityResolver

File

core/modules/serialization/src/EntityResolver/UuidReferenceInterface.php

View source
<?php

namespace Drupal\serialization\EntityResolver;

use Symfony\Component\Serializer\Normalizer\NormalizerInterface;

/**
 * Interface for extracting UUID from entity reference data when denormalizing.
 */
interface UuidReferenceInterface extends NormalizerInterface {
    
    /**
     * Get the uuid from the data array.
     *
     * @param array $data
     *   The data, as was passed into the Normalizer.
     *
     * @return string
     *   A UUID.
     */
    public function getUuid($data);

}

Interfaces

Title Deprecated Summary
UuidReferenceInterface Interface for extracting UUID from entity reference data when denormalizing.
RSS feed
Powered by Drupal