public function Kernel::getCharset in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/http-kernel/Kernel.php \Symfony\Component\HttpKernel\Kernel::getCharset()
Gets the charset of the application.
Return value
string The charset
Overrides KernelInterface::getCharset
1 call to Kernel::getCharset()
- Kernel::getKernelParameters in vendor/
symfony/ http-kernel/ Kernel.php - Returns the kernel parameters.
File
- vendor/
symfony/ http-kernel/ Kernel.php, line 399
Class
- Kernel
- The Kernel is the heart of the Symfony system.
Namespace
Symfony\Component\HttpKernelCode
public function getCharset() {
return 'UTF-8';
}