ValueInterface.php 527 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * This file is part of the PHPExiftool package.
  4. *
  5. * (c) Alchemy <support@alchemy.fr>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace PHPExiftool\Driver\Value;
  11. interface ValueInterface
  12. {
  13. const TYPE_BINARY = 'binary';
  14. const TYPE_MONO = 'mono';
  15. const TYPE_MULTI = 'multi';
  16. public function set($value);
  17. public function getType();
  18. public function asString();
  19. public function asArray();
  20. }