mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-23 06:16:12 +01:00
17 lines
323 B
PHP
17 lines
323 B
PHP
|
<?php
|
||
|
|
||
|
namespace Codappix\SearchCore;
|
||
|
|
||
|
use TYPO3\CMS\Core\Utility\GeneralUtility;
|
||
|
use TYPO3\CMS\Extbase\Object\ObjectManager;
|
||
|
|
||
|
class Bootstrap
|
||
|
{
|
||
|
/**
|
||
|
* @return object|ObjectManager
|
||
|
*/
|
||
|
public static function getObjectManager()
|
||
|
{
|
||
|
return GeneralUtility::makeInstance(ObjectManager::class);
|
||
|
}
|
||
|
}
|