ProcessorInterface.php 409 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * @package Grav\Common\Processors
  4. *
  5. * @copyright Copyright (c) 2015 - 2023 Trilby Media, LLC. All rights reserved.
  6. * @license MIT License; see LICENSE file for details.
  7. */
  8. namespace Grav\Common\Processors;
  9. use Psr\Http\Server\MiddlewareInterface;
  10. /**
  11. * Interface ProcessorInterface
  12. * @package Grav\Common\Processors
  13. */
  14. interface ProcessorInterface extends MiddlewareInterface
  15. {
  16. }