Resolvable.php 621 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace TYPO3\PharStreamWrapper;
  3. /*
  4. * This file is part of the TYPO3 project.
  5. *
  6. * It is free software; you can redistribute it and/or modify it under the terms
  7. * of the MIT License (MIT). For the full copyright and license information,
  8. * please read the LICENSE file that was distributed with this source code.
  9. *
  10. * The TYPO3 project - inspiring people to share!
  11. */
  12. use TYPO3\PharStreamWrapper\Resolver\PharInvocation;
  13. interface Resolvable
  14. {
  15. /**
  16. * @param string $path
  17. * @param null|int $flags
  18. * @return null|PharInvocation
  19. */
  20. public function resolve($path, $flags = null);
  21. }