* @phpstan-var array */ public $filters = []; /** * Parser Plugins provide a way to extend the functionality provided by the core Parser by creating aliases that * will be replaced with any callable. Can be single or tag pair. * * @var array|string> * @phpstan-var array|parser_callable_string|parser_callable> */ public $plugins = []; /** * View Decorators are class methods that will be run in sequence to have a chance to alter the generated output * just prior to caching the results. * * All classes must implement CodeIgniter\View\ViewDecoratorInterface * * @var list> */ public array $decorators = [Decorator::class]; }