public function Kernel::getCharset

Gets the charset of the application.

@api

Return value

string The charset

Overrides KernelInterface::getCharset

1 call to Kernel::getCharset()
Kernel::getKernelParameters in drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Kernel.php
Returns the kernel parameters.

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Kernel.php, line 481

Class

Kernel
The Kernel is the heart of the Symfony system.

Namespace

Symfony\Component\HttpKernel

Code

public function getCharset() {
  return 'UTF-8';
}