PluginProbe
MxChat – AI Chatbot & Content Generation for WordPress / trunk
MxChat – AI Chatbot & Content Generation for WordPress vtrunk
3.2.21 3.2.20 3.2.19 3.2.18 3.2.17 3.2.16 3.2.15 3.2.14 3.2.12 3.2.13 3.2.11 3.2.10 3.2.9 3.2.8 3.2.7 3.2.6 3.2.5 3.2.4 3.2.3 3.2.2 3.2.1 2.0.3 2.0.4 2.0.5 2.0.6 All 152 releases
mxchat-basic / includes / pdf-parser / src / Smalot / PdfParser / Encoding / EncodingLocator.php

EncodingLocator.php in MxChat – AI Chatbot & Content Generation for WordPress trunk, at includes/pdf-parser/src/Smalot/PdfParser/Encoding/EncodingLocator.php

18 lines 402 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Smalot\PdfParser\Encoding;
4
5 class EncodingLocator
6 {
7 protected static $encodings;
8
9 public static function getEncoding(string $encodingClassName): AbstractEncoding
10 {
11 if (!isset(self::$encodings[$encodingClassName])) {
12 self::$encodings[$encodingClassName] = new $encodingClassName();
13 }
14
15 return self::$encodings[$encodingClassName];
16 }
17 }
18