You are here

public function Kernel::init in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-kernel/Kernel.php \Symfony\Component\HttpKernel\Kernel::init()

Deprecated

since version 2.3, to be removed in 3.0. Move your logic in the constructor instead.

1 call to Kernel::init()
Kernel::__construct in vendor/symfony/http-kernel/Kernel.php
Constructor.

File

vendor/symfony/http-kernel/Kernel.php, line 100

Class

Kernel
The Kernel is the heart of the Symfony system.

Namespace

Symfony\Component\HttpKernel

Code

public function init() {
  @trigger_error('The ' . __METHOD__ . ' method is deprecated since version 2.3 and will be removed in 3.0. Move your logic to the constructor method instead.', E_USER_DEPRECATED);
}