summaryrefslogtreecommitdiffstats
path: root/src/Fragment.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Fragment.php')
-rw-r--r--src/Fragment.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Fragment.php b/src/Fragment.php
index a9a349a..6ae85da 100644
--- a/src/Fragment.php
+++ b/src/Fragment.php
@@ -38,4 +38,15 @@ abstract class Fragment
return null;
}
+ /**
+ * Builds the string representation of a fragment of this type.
+ *
+ * @param Fragment $fragment The fragment to be built.
+ *
+ * @return string
+ */
+ public static function build(Fragment $fragment)
+ {
+ return null;
+ }
}