Files
dev-epau.archi.fr/system/src/Grav/Common/Processors/ProcessorInterface.php
T
2021-03-05 09:30:59 +01:00

21 lines
409 B
PHP

<?php
/**
* @package Grav\Common\Processors
*
* @copyright Copyright (c) 2015 - 2021 Trilby Media, LLC. All rights reserved.
* @license MIT License; see LICENSE file for details.
*/
namespace Grav\Common\Processors;
use Psr\Http\Server\MiddlewareInterface;
/**
* Interface ProcessorInterface
* @package Grav\Common\Processors
*/
interface ProcessorInterface extends MiddlewareInterface
{
}