protected DrupalKernel::getKernelParameters()
Returns the kernel parameters.
Return value
array An array of kernel parameters
File
- core/lib/Drupal/Core/DrupalKernel.php, line 819
Class
- DrupalKernel
- The DrupalKernel class is the core of Drupal itself.
Namespace
Drupal\Core
Code
1 2 3 4 5 | protected function getKernelParameters() { return array ( 'kernel.environment' => $this ->environment, ); } |
Please login to continue.