DebuggerInitProcessor.php 470 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * @package Grav.Common.Processors
  4. *
  5. * @copyright Copyright (C) 2015 - 2018 Trilby Media, LLC. All rights reserved.
  6. * @license MIT License; see LICENSE file for details.
  7. */
  8. namespace Grav\Common\Processors;
  9. class DebuggerInitProcessor extends ProcessorBase implements ProcessorInterface
  10. {
  11. public $id = '_debugger';
  12. public $title = 'Init Debugger';
  13. public function process()
  14. {
  15. $this->container['debugger']->init();
  16. }
  17. }