TYPO3  7.6
ParserInterface.php
Go to the documentation of this file.
1 <?php
2 
20 
22 
23 interface ParserInterface
24 {
31 
44  public function getGranularity();
45 
57  public function setGranularity(GranularityInterface $granularity);
58 
64  public function getOpcodes();
65 
72  public function setOpcodes(OpcodesInterface $opcodes);
73 
82  public function parse($from_text, $to_text);
83 }