[ Index ] |
PHP Cross Reference of phpBB-3.3.14-deutsch |
[Summary view] [Print] [Text view]
1 <?php 2 3 /** 4 * @package s9e\TextFormatter 5 * @copyright Copyright (c) 2010-2022 The s9e authors 6 * @license http://www.opensource.org/licenses/mit-license.php The MIT License 7 */ 8 namespace s9e\TextFormatter\Plugins\Litedown\Parser\Passes; 9 10 use s9e\TextFormatter\Parser; 11 use s9e\TextFormatter\Plugins\Litedown\Parser\ParsedText; 12 13 abstract class AbstractPass 14 { 15 /** 16 * @var Parser 17 */ 18 protected $parser; 19 20 /** 21 * @var ParsedText Text being parsed 22 */ 23 protected $text; 24 25 /** 26 * @param Parser $parser 27 * @param ParsedText $text 28 */ 29 public function __construct(Parser $parser, ParsedText $text) 30 { 31 $this->parser = $parser; 32 $this->text = $text; 33 } 34 35 /** 36 * Parse the prepared text from stored parser 37 * 38 * @return void 39 */ 40 abstract public function parse(); 41 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Mon Nov 25 19:05:08 2024 | Cross-referenced by PHPXref 0.7.1 |