Version 1
[yaffs-website] / web / core / lib / Drupal / Core / TypedData / Type / BinaryInterface.php
1 <?php
2
3 namespace Drupal\Core\TypedData\Type;
4
5 use Drupal\Core\TypedData\PrimitiveInterface;
6
7 /**
8  * Interface for binary data.
9  *
10  * The plain value of binary data is a PHP file resource, see
11  * http://php.net/manual/language.types.resource.php. For setting the value
12  * a PHP file resource or a (absolute) stream resource URI may be passed.
13  *
14  * @ingroup typed_data
15  */
16 interface BinaryInterface extends PrimitiveInterface {
17
18 }