Lines Matching defs:markup
164 * @param string $markup - the svg as a string
169 public static function createSvgFromMarkup(string $markup, string $name): FetcherSvg
171 return self::createSvgEmpty()->setMarkup($markup, $name);
810 * @param string $markup - the svg as a string
814 private function setMarkup(string $markup, string $name): FetcherSvg
817 $this->buildXmlDocumentIfNeeded($markup);
1681 private function buildXmlDocumentIfNeeded(string $markup = null): FetcherSvg
1685 * via markup (See {@link self::setMarkup()}
1695 if ($markup !== null) {
1696 $this->xmlDocument = XmlDocument::createXmlDocFromMarkup($markup);
1714 $markup = FileSystems::getContent($path);
1719 $this->buildXmlDocumentIfNeeded($markup);