https://staging.troskovi.com/apiV2/managers/buildings/?limit=8&page=1

Exceptions

App\Services\BuildingService::getBuildingsPaginatedApi(): Argument #1 ($user) must be of type App\Entity\User, null given, called in /var/www/troskoviApi6/src/Controller/ApiV2/Managers/BuildingController.php on line 51

  • Exception
  • Logs
  • Stack Trace

TypeError

  1.      *
  2.      * @return array<string, mixed>
  3.      * @throws NoResultException
  4.      * @throws NonUniqueResultException
  5.      */
  6.     public function getBuildingsPaginatedApi(User $userListItemsOptions $listItemsOptionsint $status): array
  7.     {
  8.         return [
  9.             'data'  => $this->buildingRepository->getBuildingAddressesByUserPaginatedApi(
  10.                 $user,
  11.                 $status,
BuildingService->getBuildingsPaginatedApi() in src/Controller/ApiV2/Managers/BuildingController.php (line 51)
  1.     {
  2.         $options $this->getListOptions($request);
  3.         /** @var User $user */
  4.         $user $this->getUser();
  5.         return $this->buildingService->getBuildingsPaginatedApi($user$options1);
  6.     }
  7.     /**
  8.      * @Rest\Get("/{buildingId}/flats", name="managers_building_flats")
  9.      * @param Request $request
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
  1.         $this->request $request;
  2.     }
  3.     public function run(): int
  4.     {
  5.         $response $this->kernel->handle($this->request);
  6.         $response->send();
  7.         if ($this->kernel instanceof TerminableInterface) {
  8.             $this->kernel->terminate($this->request$response);
  9.         }
in vendor/autoload_runtime.php -> run (line 29)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/var/www/troskoviApi6/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5.     return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };