1 | <?php |
||
12 | abstract class CleanParamParserCore implements ParserInterface, RobotsTxtInterface |
||
13 | { |
||
14 | /** |
||
15 | * Clean-param array |
||
16 | * @var string[][] |
||
17 | */ |
||
18 | protected $cleanParam = []; |
||
19 | |||
20 | /** |
||
21 | * CleanParamParserCore constructor. |
||
22 | */ |
||
23 | public function __construct() |
||
26 | |||
27 | /** |
||
28 | * Add |
||
29 | * |
||
30 | * @param string $line |
||
31 | * @return bool |
||
32 | */ |
||
33 | public function add($line) |
||
49 | |||
50 | /** |
||
51 | * Render |
||
52 | * |
||
53 | * @return string[] |
||
54 | */ |
||
55 | public function render() |
||
66 | } |
||
67 |