mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-23 10:16:11 +01:00
8 lines
132 B
PHP
8 lines
132 B
PHP
|
<?php
|
||
|
|
||
|
namespace Codappix\SearchCore\Utility;
|
||
|
|
||
|
interface ExtensionConfigurationInterface
|
||
|
{
|
||
|
public function get($extensionKey);
|
||
|
}
|