* @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|callable|string> * @phpstan-var array|ParserCallableString|ParserCallable> */ 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 class-string[] */ public array $decorators = []; }