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

Namespace

Drupal\Core\TypedData\Type

File

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

namespace Drupal\Core\TypedData\Type;

use Drupal\Core\TypedData\PrimitiveInterface;

/**
 * Interface for binary data.
 *
 * The plain value of binary data is a PHP file resource, see
 * http://php.net/manual/language.types.resource.php. For setting the value
 * a PHP file resource or an (absolute) stream resource URI may be passed.
 *
 * @ingroup typed_data
 */
interface BinaryInterface extends PrimitiveInterface {

}

Interfaces

Namesort descending Description
BinaryInterface Interface for binary data.