Files
r2c/system/src/Grav/Common/Processors/ProcessorInterface.php
T
2018-06-21 17:59:40 +02:00

15 lines
294 B
PHP

<?php
/**
* @package Grav.Common.Processors
*
* @copyright Copyright (C) 2015 - 2018 Trilby Media, LLC. All rights reserved.
* @license MIT License; see LICENSE file for details.
*/
namespace Grav\Common\Processors;
interface ProcessorInterface
{
public function process();
}