ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Shape.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Data\Text;
22 
25 
34 interface Shape
35 {
39  public function fromString(string $text): Text;
40 
41  public function isRawStringCompliant(string $text): bool;
51  public function toHTML(Text $text): HTML;
61  public function toPlainText(Text $text): PlainText;
62  public function getMarkup(): Markup;
63 }
Methods in this interface should mostly be called by the according methods on Text instances...
Definition: Shape.php:34
This class currently is a stub only.
Definition: PlainText.php:27
toPlainText(Text $text)
It should almost never be required to call this directly on shape.
fromString(string $text)
toHTML(Text $text)
It should almost never be required to call this directly on shape.
This class currently is a stub only.
Definition: HTML.php:27
isRawStringCompliant(string $text)