%PDF- %PDF-
Direktori : /var/www/cwg/wp-content/plugins/searchwp/lib/vendor/henck/rtf-to-html/src/ |
Current File : //var/www/cwg/wp-content/plugins/searchwp/lib/vendor/henck/rtf-to-html/src/Text.php |
<?php namespace SearchWP\Dependencies\RtfHtmlPhp; class Text extends \SearchWP\Dependencies\RtfHtmlPhp\Element { public $text; /* * Create a new Text instance with string content. */ public function __construct(string $text) { $this->text = $text; } public function toString(int $level) { return \str_repeat(" ", $level) . "TEXT {$this->text}\n"; } }