Import Ruty

This commit is contained in:
2024-03-11 00:57:00 +01:00
parent 50481b23df
commit 34a31bb184
617 changed files with 106612 additions and 0 deletions
@@ -0,0 +1,21 @@
<?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";
}
}