ControlSymbol.php 284 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 <?php namespace SearchWP\Dependencies\RtfHtmlPhp; class ControlSymbol extends Element { public $symbol; public $parameter = 0; public function toString(int $level) { return \str_repeat(" ", $level) . "SYMBOL {$this->symbol} ({$this->parameter})\n"; } }