14 lines
197 B
PHP
Executable File
14 lines
197 B
PHP
Executable File
<?php
|
|
|
|
namespace Mautic\Middleware;
|
|
|
|
interface PrioritizedMiddlewareInterface
|
|
{
|
|
/**
|
|
* Get the middleware's priority.
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getPriority();
|
|
}
|