HandlerStackInterface
interface HandlerStackInterface implements SetLoggerInterface (View source)
Provides an interface for SimplePie\HandlerStack
to implement.
Methods
append(callable $middleware, string|null $name = null, string|null $overrideType = null)
Appends a new middleware class onto the end of the stack.
appendClosure(string $overrideType, callable $middleware, string|null $name = null)
Appends a new middleware closure onto the end of the stack.
prepend(callable $middleware, string|null $name = null, string|null $overrideType = null)
Prepends a new middleware class onto the beginning of the stack.
prependClosure(string $overrideType, callable $middleware, string|null $name = null)
Prepends a new middleware closure onto the beginning of the stack.
void
void
Details
in SetLoggerInterface at line 17
setLogger(LoggerInterface $logger)
at line 40
HandlerStackInterface
append(callable $middleware, string|null $name = null, string|null $overrideType = null)
Appends a new middleware class onto the end of the stack.
at line 56
HandlerStackInterface
appendClosure(string $overrideType, callable $middleware, string|null $name = null)
Appends a new middleware closure onto the end of the stack.
at line 72
HandlerStackInterface
prepend(callable $middleware, string|null $name = null, string|null $overrideType = null)
Prepends a new middleware class onto the beginning of the stack.
at line 88
HandlerStackInterface
prependClosure(string $overrideType, callable $middleware, string|null $name = null)
Prepends a new middleware closure onto the beginning of the stack.