Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / symfony / http-kernel / Tests / Fixtures / 123 / Kernel123.php
1 <?php
2
3 /*
4  * This file is part of the Symfony package.
5  *
6  * (c) Fabien Potencier <fabien@symfony.com>
7  *
8  * For the full copyright and license information, please view the LICENSE
9  * file that was distributed with this source code.
10  */
11
12 namespace Symfony\Component\HttpKernel\Tests\Fixtures\_123;
13
14 use Symfony\Component\Config\Loader\LoaderInterface;
15 use Symfony\Component\HttpKernel\Kernel;
16
17 class Kernel123 extends Kernel
18 {
19     public function registerBundles()
20     {
21         return array();
22     }
23
24     public function registerContainerConfiguration(LoaderInterface $loader)
25     {
26     }
27
28     public function getCacheDir()
29     {
30         return sys_get_temp_dir().'/'.Kernel::VERSION.'/kernel123/cache/'.$this->environment;
31     }
32
33     public function getLogDir()
34     {
35         return sys_get_temp_dir().'/'.Kernel::VERSION.'/kernel123/logs';
36     }
37 }