Files
main-website/ruty/mails/vendor/roundcube/rtf-html-php/src/ControlSymbol.php
T
2024-03-11 00:57:00 +01:00

22 lines
424 B
PHP

<?php
namespace RtfHtmlPhp;
class ControlSymbol extends Element
{
public $symbol;
public $parameter = 0;
/**
* Returns string representation of the object for debug purposes
*
* @param int $level Indentation level
*
* @return string
*/
public function toString($level)
{
return str_repeat(" ", $level) . "SYMBOL {$this->symbol} ({$this->parameter})\n";
}
}