BinaryInterface.php 430 B

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