PluginProbe
Simple Analytics / 1.104
Simple Analytics v1.104
1.109 1.108 1.107 1.106 1.73 1.74 1.75 1.76 1.77 1.78 1.79 1.8 1.80 1.81 1.82 1.83 1.84 1.85 1.86 1.87 1.88 1.89 1.9 1.90 1.91 All 98 releases
simpleanalytics / tests / TestKernel.php

TestKernel.php in Simple Analytics 1.104, at tests/TestKernel.php

25 lines 443 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Tests;
4
5 use Symfony\Component\HttpKernel\Kernel;
6 use Symfony\Component\Config\Loader\LoaderInterface;
7
8 final class TestKernel extends Kernel
9 {
10 public function registerBundles(): iterable
11 {
12 return [];
13 }
14
15 public function registerContainerConfiguration(LoaderInterface $loader): void
16 {
17 // no-op
18 }
19
20 public function getProjectDir(): string
21 {
22 return dirname(__DIR__);
23 }
24 }
25