Uncaught TYPO3 Exception
Class Frs\DrkAdressen\Domain\Repository\OrganisationRepository does not exist

ReflectionException thrown in file
/code/typo3/sysext/extbase/Classes/Object/Container/ClassInfoFactory.php in line 93.

48 ReflectionParameter::getClass()

/code/typo3/sysext/extbase/Classes/Object/Container/ClassInfoFactory.php:
00091:                     $reflectionParameter = $reflectionMethod->getParameters();
00092:                     if (isset($reflectionParameter[0])) {
00093:                         if (!$reflectionParameter[0]->getClass()) {
00094:                             throw new \Exception('Method "' . $reflectionMethod->getName() . '" of class "' . $reflectedClass->getName() . '" is marked as setter for Dependency Injection, but does not have a type annotation');
00095:                         }

47 TYPO3\CMS\Extbase\Object\Container\ClassInfoFactory::getInjectMethods(ReflectionClass)

/code/typo3/sysext/extbase/Classes/Object/Container/ClassInfoFactory.php:
00038:         }
00039:         $constructorArguments = $this->getConstructorArguments($reflectedClass);
00040:         $injectMethods = $this->getInjectMethods($reflectedClass);
00041:         $injectProperties = $this->getInjectProperties($reflectedClass);
00042:         $isSingleton = $this->getIsSingleton($className);

46 TYPO3\CMS\Extbase\Object\Container\ClassInfoFactory::buildClassInfoFromClassName("Frs\DrkAdressen\Controller\OrganisationController")

/code/typo3/sysext/extbase/Classes/Object/Container/Container.php:
00350:         $classInfo = $this->getClassInfoCache()->get($classNameHash);
00351:         if (!$classInfo instanceof \TYPO3\CMS\Extbase\Object\Container\ClassInfo) {
00352:             $classInfo = $this->getClassInfoFactory()->buildClassInfoFromClassName($className);
00353:             $this->getClassInfoCache()->set($classNameHash, $classInfo);
00354:         }

45 TYPO3\CMS\Extbase\Object\Container\Container::getClassInfo("Frs\DrkAdressen\Controller\OrganisationController")

/code/typo3/sysext/extbase/Classes/Object/Container/Container.php:
00171:             return $this->singletonInstances[$className];
00172:         }
00173:         $classInfo = $this->getClassInfo($className);
00174:         $classIsSingleton = $classInfo->getIsSingleton();
00175:         if (!$classIsSingleton) {

44 TYPO3\CMS\Extbase\Object\Container\Container::getInstanceInternal("Frs\DrkAdressen\Controller\OrganisationController", array)

/code/typo3/sysext/extbase/Classes/Object/Container/Container.php:
00124:     {
00125:         $this->prototypeObjectsWhichAreCurrentlyInstanciated = [];
00126:         return $this->getInstanceInternal($className, $givenConstructorArguments);
00127:     }
00128: 

43 TYPO3\CMS\Extbase\Object\Container\Container::getInstance("Frs\DrkAdressen\Controller\OrganisationController", array)

/code/typo3/sysext/extbase/Classes/Object/ObjectManager.php:
00097:             $instance = call_user_func_array([\TYPO3\CMS\Core\Utility\GeneralUtility::class, 'makeInstance'], $arguments);
00098:         } else {
00099:             $instance = $this->objectContainer->getInstance($objectName, $arguments);
00100:         }
00101:         return $instance;

42 TYPO3\CMS\Extbase\Object\ObjectManager::get("Frs\DrkAdressen\Controller\OrganisationController")

/code/typo3/sysext/extbase/Classes/Mvc/Dispatcher.php:
00113:     {
00114:         $controllerObjectName = $request->getControllerObjectName();
00115:         $controller = $this->objectManager->get($controllerObjectName);
00116:         if (!$controller instanceof \TYPO3\CMS\Extbase\Mvc\Controller\ControllerInterface) {
00117:             throw new \TYPO3\CMS\Extbase\Mvc\Exception\InvalidControllerException('Invalid controller "' . $request->getControllerObjectName() . '". The controller must implement the TYPO3\\CMS\\Extbase\\Mvc\\Controller\\ControllerInterface.', 1202921619);

41 TYPO3\CMS\Extbase\Mvc\Dispatcher::resolveController(TYPO3\CMS\Extbase\Mvc\Web\Request)

/code/typo3/sysext/extbase/Classes/Mvc/Dispatcher.php:
00082:                 throw new \TYPO3\CMS\Extbase\Mvc\Exception\InfiniteLoopException('Could not ultimately dispatch the request after ' . $dispatchLoopCount . ' iterations. Most probably, a @ignorevalidation annotation is missing on re-displaying a form with validation errors.', 1217839467);
00083:             }
00084:             $controller = $this->resolveController($request);
00085:             try {
00086:                 $controller->processRequest($request, $response);

40 TYPO3\CMS\Extbase\Mvc\Dispatcher::dispatch(TYPO3\CMS\Extbase\Mvc\Web\Request, TYPO3\CMS\Extbase\Mvc\Web\Response)

/code/typo3/sysext/extbase/Classes/Mvc/Web/FrontendRequestHandler.php:
00067:         /** @var $response \TYPO3\CMS\Extbase\Mvc\ResponseInterface */
00068:         $response = $this->objectManager->get(\TYPO3\CMS\Extbase\Mvc\Web\Response::class);
00069:         $this->dispatcher->dispatch($request, $response);
00070:         return $response;
00071:     }

39 TYPO3\CMS\Extbase\Mvc\Web\FrontendRequestHandler::handleRequest()

/code/typo3/sysext/extbase/Classes/Core/Bootstrap.php:
00204:         $requestHandler = $requestHandlerResolver->resolveRequestHandler();
00205: 
00206:         $response = $requestHandler->handleRequest();
00207:         // If response is NULL after handling the request we need to stop
00208:         // This happens for instance, when a USER object was converted to a USER_INT

38 TYPO3\CMS\Extbase\Core\Bootstrap::handleRequest()

/code/typo3/sysext/extbase/Classes/Core/Bootstrap.php:
00191:     {
00192:         $this->initialize($configuration);
00193:         return $this->handleRequest();
00194:     }
00195: 

37 TYPO3\CMS\Extbase\Core\Bootstrap::run("", array)
36 call_user_func_array(array, array)

/code/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php:
07320:                     ], [
07321:                         $content,
07322:                         $conf
07323:                     ]);
07324:                 } else {

35 TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::callUserFunction("TYPO3\CMS\Extbase\Core\Bootstrap->run", array, "")

/code/typo3/sysext/frontend/Classes/ContentObject/UserContentObject.php:
00038:         }
00039:         $this->cObj->includeLibs($conf);
00040:         $tempContent = $this->cObj->callUserFunction($conf['userFunc'], $conf, '');
00041:         if ($this->cObj->doConvertToUserIntObject) {
00042:             $this->cObj->doConvertToUserIntObject = false;

34 TYPO3\CMS\Frontend\ContentObject\UserContentObject::render(array)

/code/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php:
00941:         // Render content
00942:         try {
00943:             $content .= $contentObject->render($configuration);
00944:         } catch (ContentRenderingException $exception) {
00945:             // Content rendering Exceptions indicate a critical problem which should not be

33 TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::render(TYPO3\CMS\Frontend\ContentObject\UserContentObject, array)

/code/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php:
00857:                     $contentObject = $this->getContentObject($name);
00858:                     if ($contentObject) {
00859:                         $content .= $this->render($contentObject, $conf);
00860:                     } else {
00861:                         // Call hook functions for extra processing

32 TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::cObjGetSingle("USER", array)

/code/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php:
00117:             $setup = $setup[$segment . '.'];
00118:         }
00119:         $content = $contentObject->cObjGetSingle($setup[$lastSegment], $setup[$lastSegment . '.']);
00120:         if (TYPO3_MODE === 'BE') {
00121:             $this->resetFrontendEnvironment();

31 TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::render("tt_content.list.20.drkadressen_organisationplugin", array, NULL, "")
30 call_user_func_array(array, array)

/code/typo3/sysext/fluid/Classes/Core/ViewHelper/AbstractViewHelper.php:
00266: 
00267:         try {
00268:             return call_user_func_array([$this, 'render'], $renderMethodParameters);
00269:         } catch (Exception $exception) {
00270:             if (GeneralUtility::getApplicationContext()->isProduction()) {

29 TYPO3\CMS\Fluid\Core\ViewHelper\AbstractViewHelper::callRenderMethod()

/code/typo3/sysext/fluid/Classes/Core/ViewHelper/AbstractViewHelper.php:
00247:         $this->initialize();
00248: 
00249:         return $this->callRenderMethod();
00250:     }
00251: 

28 TYPO3\CMS\Fluid\Core\ViewHelper\AbstractViewHelper::initializeArgumentsAndRender()

/code/typo3temp/Cache/Code/fluid_template/Standalone_template_file_List_aff420a3d5a13a1260e140747edefc976d4cefde.php:
00072: // End of ViewHelper TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper
00073: 
00074: $output0 .= $viewHelper9->initializeArgumentsAndRender();
00075: 
00076: $output0 .= '

27 FluidCache_Standalone_template_file_List_aff420a3d5a13a1260e140747edefc976d4cefde::section_62bce9422ff2d14f69ab80a154510232fc8a9afd(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext)

/code/typo3/sysext/fluid/Classes/View/AbstractTemplateView.php:
00228:             }
00229:             $this->startRendering($renderingTypeOnNextLevel, $parsedTemplate, $renderingContext);
00230:             $output = $parsedTemplate->{$methodNameOfSection}($renderingContext);
00231:             $this->stopRendering();
00232:         } else {

26 TYPO3\CMS\Fluid\View\AbstractTemplateView::renderSection("Main", array, boolean)

/code/typo3/sysext/fluid/Classes/ViewHelpers/RenderViewHelper.php:
00119:             return $viewHelperVariableContainer->getView()->renderPartial($partial, $section, $arguments);
00120:         } elseif ($section !== null) {
00121:             return $viewHelperVariableContainer->getView()->renderSection($section, $arguments, $optional);
00122:         }
00123: 

25 TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic(array, Closure, TYPO3\CMS\Fluid\Core\Rendering\RenderingContext)

/code/typo3temp/Cache/Code/fluid_template/Standalone_layout_Content_4be312a953f69a0254b2a365e6e77b8a46bd12ea.php:
00048: $renderChildrenClosure5 = function() {return NULL;};
00049: 
00050: $output0 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments4, $renderChildrenClosure5, $renderingContext);
00051: 
00052: $output0 .= '

24 FluidCache_Standalone_layout_Content_4be312a953f69a0254b2a365e6e77b8a46bd12ea::render(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext)

/code/typo3/sysext/fluid/Classes/View/AbstractTemplateView.php:
00187:             }
00188:             $this->startRendering(self::RENDERING_LAYOUT, $parsedTemplate, $this->baseRenderingContext);
00189:             $output = $parsedLayout->render($this->baseRenderingContext);
00190:             $this->stopRendering();
00191:         } else {

23 TYPO3\CMS\Fluid\View\AbstractTemplateView::render()

/code/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php:
00298:     protected function renderFluidView()
00299:     {
00300:         return $this->view->render();
00301:     }
00302: 

22 TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject::renderFluidView()

/code/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php:
00100:         $this->view->assignMultiple($variables);
00101: 
00102:         $content = $this->renderFluidView();
00103:         $content = $this->applyStandardWrapToRenderedContent($content, $conf);
00104: 

21 TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject::render(array)

/code/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php:
00941:         // Render content
00942:         try {
00943:             $content .= $contentObject->render($configuration);
00944:         } catch (ContentRenderingException $exception) {
00945:             // Content rendering Exceptions indicate a critical problem which should not be

20 TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::render(TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject, array)

/code/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php:
00857:                     $contentObject = $this->getContentObject($name);
00858:                     if ($contentObject) {
00859:                         $content .= $this->render($contentObject, $conf);
00860:                     } else {
00861:                         // Call hook functions for extra processing

19 TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::cObjGetSingle("FLUIDTEMPLATE", array, "lib.fluidContent")

/code/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php:
00839:                 // Getting the cObject
00840:                 $timeTracker->incStackPointer();
00841:                 $content .= $this->cObjGetSingle($name, $conf, $key);
00842:                 $timeTracker->decStackPointer();
00843:             } else {

18 TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::cObjGetSingle("FLUIDTEMPLATE", array, "list")

/code/typo3/sysext/frontend/Classes/ContentObject/CaseContentObject.php:
00042:             $theValue = '';
00043:         } else {
00044:             $theValue = $this->cObj->cObjGetSingle($conf[$key], $conf[$key . '.'], $key);
00045:         }
00046:         if (isset($conf['stdWrap.'])) {

17 TYPO3\CMS\Frontend\ContentObject\CaseContentObject::render(array)

/code/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php:
00941:         // Render content
00942:         try {
00943:             $content .= $contentObject->render($configuration);
00944:         } catch (ContentRenderingException $exception) {
00945:             // Content rendering Exceptions indicate a critical problem which should not be

16 TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::render(TYPO3\CMS\Frontend\ContentObject\CaseContentObject, array)

/code/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php:
00857:                     $contentObject = $this->getContentObject($name);
00858:                     if ($contentObject) {
00859:                         $content .= $this->render($contentObject, $conf);
00860:                     } else {
00861:                         // Call hook functions for extra processing

15 TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::cObjGetSingle("CASE", array, "tt_content")

/code/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php:
00839:                 // Getting the cObject
00840:                 $timeTracker->incStackPointer();
00841:                 $content .= $this->cObjGetSingle($name, $conf, $key);
00842:                 $timeTracker->decStackPointer();
00843:             } else {

14 TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::cObjGetSingle("CASE", array, "")

/code/typo3/sysext/frontend/Classes/ContentObject/ContentContentObject.php:
00095:                         $this->cObj->lastChanged($row['tstamp']);
00096:                         $cObj->start($row, $conf['table']);
00097:                         $tmpValue = $cObj->cObjGetSingle($renderObjName, $renderObjConf, $renderObjKey);
00098:                         $cobjValue .= $tmpValue;
00099:                     }

13 TYPO3\CMS\Frontend\ContentObject\ContentContentObject::render(array)

/code/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php:
00941:         // Render content
00942:         try {
00943:             $content .= $contentObject->render($configuration);
00944:         } catch (ContentRenderingException $exception) {
00945:             // Content rendering Exceptions indicate a critical problem which should not be

12 TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::render(TYPO3\CMS\Frontend\ContentObject\ContentContentObject, array)

/code/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php:
00857:                     $contentObject = $this->getContentObject($name);
00858:                     if ($contentObject) {
00859:                         $content .= $this->render($contentObject, $conf);
00860:                     } else {
00861:                         // Call hook functions for extra processing

11 TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::cObjGetSingle("CONTENT", array)

/code/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php:
00261:             }
00262:             if (!in_array($variableName, $reservedVariables)) {
00263:                 $variables[$variableName] = $this->cObj->cObjGetSingle($cObjType, $variablesToProcess[$variableName . '.']);
00264:             } else {
00265:                 throw new \InvalidArgumentException(

10 TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject::getContentObjectVariables(array)

/code/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php:
00095:         $this->setExtbaseVariables($conf);
00096:         $this->assignSettings($conf);
00097:         $variables = $this->getContentObjectVariables($conf);
00098:         $variables = $this->contentDataProcessor->process($this->cObj, $conf, $variables);
00099: 

9 TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject::render(array)

/code/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php:
00941:         // Render content
00942:         try {
00943:             $content .= $contentObject->render($configuration);
00944:         } catch (ContentRenderingException $exception) {
00945:             // Content rendering Exceptions indicate a critical problem which should not be

8 TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::render(TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject, array)

/code/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php:
00857:                     $contentObject = $this->getContentObject($name);
00858:                     if ($contentObject) {
00859:                         $content .= $this->render($contentObject, $conf);
00860:                     } else {
00861:                         // Call hook functions for extra processing

7 TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::cObjGetSingle("FLUIDTEMPLATE", array, "10")

/code/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php:
00803:             if ((int)$theKey && strpos($theKey, '.') === false) {
00804:                 $conf = $setup[$theKey . '.'];
00805:                 $content .= $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
00806:             }
00807:         }

6 TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::cObjGet(array)

/code/typo3/sysext/frontend/Classes/Page/PageGenerator.php:
00208:         $timeTracker->incStackPointer();
00209:         $timeTracker->push($tsfe->sPre, 'PAGE');
00210:         $pageContent = $tsfe->cObj->cObjGet($tsfe->pSetup);
00211:         if ($tsfe->pSetup['wrap']) {
00212:             $pageContent = $tsfe->cObj->wrap($pageContent, $tsfe->pSetup['wrap']);

5 TYPO3\CMS\Frontend\Page\PageGenerator::renderContent()

/code/typo3/sysext/frontend/Classes/Http/RequestHandler.php:
00214:                 // Content generation
00215:                 if (!$this->controller->isINTincScript()) {
00216:                     PageGenerator::renderContent();
00217:                     $this->controller->setAbsRefPrefix();
00218:                 }

4 TYPO3\CMS\Frontend\Http\RequestHandler::handleRequest(TYPO3\CMS\Core\Http\ServerRequest)

/code/typo3/sysext/core/Classes/Core/Bootstrap.php:
00309: 
00310:         // Execute the command which returns a Response object or NULL
00311:         $this->response = $requestHandler->handleRequest($request);
00312:         return $this;
00313:     }

3 TYPO3\CMS\Core\Core\Bootstrap::handleRequest(TYPO3\CMS\Core\Http\ServerRequest)

/code/typo3/sysext/frontend/Classes/Http/Application.php:
00076:     public function run(callable $execute = null)
00077:     {
00078:         $this->bootstrap->handleRequest(\TYPO3\CMS\Core\Http\ServerRequestFactory::fromGlobals());
00079: 
00080:         if ($execute !== null) {

2 TYPO3\CMS\Frontend\Http\Application::run()

/code/index.php:
00031: call_user_func(function () {
00032:     $classLoader = require rtrim(realpath(__DIR__ . '/typo3'), '\\/') . '/../vendor/autoload.php';
00033:     (new \TYPO3\CMS\Frontend\Http\Application($classLoader))->run();
00034: });

1 {closure}()

/code/index.php:
00032:     $classLoader = require rtrim(realpath(__DIR__ . '/typo3'), '\\/') . '/../vendor/autoload.php';
00033:     (new \TYPO3\CMS\Frontend\Http\Application($classLoader))->run();
00034: });