mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-23 14:56:11 +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.
13 lines
352 B
PHP
13 lines
352 B
PHP
<?php
|
|
|
|
namespace Codappix\SearchCore\Compatibility\Version87;
|
|
|
|
use Codappix\SearchCore\Compatibility\ExtensionConfigurationInterface;
|
|
|
|
class ExtensionConfiguration implements ExtensionConfigurationInterface
|
|
{
|
|
public function get($extensionKey)
|
|
{
|
|
return unserialize($GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf'][$extensionKey]);
|
|
}
|
|
}
|