mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-23 05:56:12 +01:00
Daniel Siepmann
c940ac4497
Do not introduce unnecessary changes into pull request for TYPO3 CMS 9 update. * Trim trailing whitespace. * Do not introduce blank line before namespace definition with this pull request. * Add posix new line at end of file.
7 lines
138 B
PHP
7 lines
138 B
PHP
<?php
|
|
namespace Codappix\SearchCore\Compatibility;
|
|
|
|
interface ExtensionConfigurationInterface
|
|
{
|
|
public function get($extensionKey);
|
|
}
|