pcreUnicodeSupport === null) { $this->pcreUnicodeSupport = StringUtils::hasPcreUnicodeSupport(); } return $this->pcreUnicodeSupport; } private function hasMbStringSupport() : bool { if ($this->mbStringSupport === null) { $this->mbStringSupport = extension_loaded('mbstring'); } return $this->mbStringSupport; } }