Home
last modified time | relevance | path

Searched refs:memoryCache (Results 1 – 1 of 1) sorted by last modified time

/plugin/dw2pdf/vendor/mpdf/mpdf/src/Fonts/
H A DFontCache.php10 private $memoryCache = []; variable in Mpdf\\Fonts\\FontCache
31 return (isset($this->memoryCache[$filename]) || $this->has($filename));
41 if (isset($this->memoryCache[$filename])) {
42 return $this->memoryCache[$filename];
45 $this->memoryCache[$filename] = json_decode($this->load($filename), true);
46 return $this->memoryCache[$filename];
71 if (isset($this->memoryCache[$filename])) {
72 unset($this->memoryCache[$filename]);