in lib/php/libsdk/SDK/Build/Dependency/Series.php [62:79]
public function getData(bool $raw = false, bool $cache = true)
{/*{{{*/
if ($cache && $this->rawData) {
$ret = $this->rawData;
} else {
if (!$this->fetcher) {
throw new Exception("Fetcher is not set");
}
$ret = $this->fetcher->getByUri($this->getUri());
}
if (!$raw) {
$ret = explode(" ", preg_replace(",[\r\n ]+,", " ", trim($ret)));
}
return $ret;
}/*}}}*/