Skip to content

Commit 63a5207

Browse files
authored
Update KernelHelperInterface.php
1 parent c74792c commit 63a5207

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/Frdlweb/KernelHelperInterface.php

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
use Psr\Http\Message\ServerRequestInterface;
1616
use Psr\Http\Server\RequestHandlerInterface;
1717

18+
/*
19+
Implementation example/default: https://webfan.de/install/?source=Webfan\Webfat\App\KernelHelper
20+
*/
1821
interface KernelHelperInterface
1922
{
2023

@@ -34,8 +37,10 @@ interface KernelHelperInterface
3437
'compress.zlib',
3538

3639
];
37-
38-
public function group(string $idPrefix = '', bool $resolve = false, bool $asTree = false);
40+
public function getModuleInfoById(string $id, string $group = 'config.modules');
41+
public function getModuleInfoByName(string $name, string $group = 'config.modules');
42+
public function findIn(string $column, string $search_value, string $group = '');
43+
public function group(string $idPrefix = '', bool $resolve = false, bool $asTree = false, bool $asValues = true);
3944
public function end() :void;
4045
public function isReservedScheme(string $protocol) : bool;
4146
public function isMounted(string $protocol) : bool;

0 commit comments

Comments
 (0)