TYPO3  7.6
Text.php
Go to the documentation of this file.
1 <?php
2 
19 namespace cogpowered\FineDiff\Render;
20 
21 class Text extends Renderer
22 {
23  public function callback($opcode, $from, $from_offset, $from_len)
24  {
25  if ($opcode === 'c' || $opcode === 'i') {
26  return substr($from, $from_offset, $from_len);
27  }
28 
29  return '';
30  }
31 }