Symfony Exception

Error

HTTP 500 Internal Server Error

Call to a member function getId() on null

Exception

Error

  1.     function loadMatchesOptimized($bLoadClubs false$bLoadLeague false$bLoadMatches false$bLoadClubPlayers false$bLoadClubLeague false)
  2.     {
  3.         $oMatches = new SeasonMatches();
  4.         $oMatches->setSeasonClubId($this->getId());
  5.         $oMatches->loadOptimized($this->getSeasonLeague()->getId(), $bLoadClubs$bLoadLeague$bLoadMatches$bLoadClubPlayers$bLoadClubLeague);
  6.         $this->setMatches($oMatches);
  7.     }
  8.     function hasMatches()
  9.     {
SeasonClub->loadMatchesOptimized(true, false, false, false, false) in /data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/app/View/Frontend/SeasonLeague/TeamMatches.php (line 177)
  1.         // ---------------------------------
  2.         $oSeasonClub = new SeasonClub();
  3.         $oSeasonClub->setLoadPlayers(false);
  4.         $oSeasonClub->setLoadSeasonLeague(true);
  5.         $oSeasonClub->load($iSeasonClubId);
  6.         $oSeasonClub->loadMatchesOptimized($bLoadClubs true$bLoadLeague false$bLoadMatches false$bLoadClubPlayers false$bLoadClubLeague false);
  7.         $aMatches $oSeasonClub->getMatches()->getMatches();
  8.         // ---------------------------------
  9.         // GROUP BY WEEK YEAR
  1.         $_ .= $this->wrapLeftRightFlex($teamPicker$this->getParentView()->renderExport([
  2.             'season_club' => $this->getAttrib('club_id')
  3.         ], ['calendar' => true]));
  4.         //$_ .= cacheIf($this->isAllowCache(), $this->buildCacheKey('matches-club-' . $this->getWeekYear()), 60, function () use ($aUniqueClubs) {
  5.         $_ .= $this->renderMatches();
  6.         //});
  7.         $_ .= '</div>';
  8.         return $_;
  1.         if ($this->hasAttrib('club_id')) {
  2.             $oView->setAttrib('club_id'$this->getAttrib('club_id'));
  3.         }
  4.         $_ .= $oView->render();
  5.         return $_;
  6.     }
  7.     function renderMatchesByClub()
  1.                 break;
  2.             case 'rozpis-klubu':
  3.                 $_ .= $this->renderMatchesByClub();
  4.                 break;
  5.             case 'rozpis-muzstva':
  6.                 $_ .= $this->renderMatchesByTeam();
  7.                 break;
  8.             case 'supisky':
  9.                 $_ .= $this->renderSupisky();
  10.                 break;
  11.             case 'tabulka':
  1.         $oIdentity \App\User::getIdentity();
  2.         $this->setIdentity($oIdentity);
  3.         $_ '';
  4.         $this->renderBreadCrumbs();
  5.         $_ .= $this->renderLeague();
  6.         return $_;
  7.     }
  8.     function addJsSocials()
  1.                 $oView->setSeasonEventId((int)\Request::getParam('p1'));
  2.             }
  3.         }
  4.         return $oView->render();
  5.     }
  6.     function printBackendSeasonLeague($param$tset$lng)
  7.     {
  1.             case 'DEFAULT_JAVASCRIPT':
  2.                 return $this->printFrontendJavascript($tset$lng);
  3.             case 'AJAX_BODY':
  4.                 return $this->printAjaxBody($param$tset$lng);
  5.             case 'PRINT_PAGE':
  6.                 return $this->printPage($tset$lng);
  7.             case 'fsubmit':
  8.             case 'submit':
  9.                 return $this->itemSubmit($param$tset$lng);
  10.             default :
  11.                 return parent::ReplaceCustomTag($tag$meno$tset$lng$param$index);
Model->ReplaceCustomTag('PRINT_PAGE', 'rozpis-muzstva', 'default', 'default', '', 0) in /data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/app/Model/season_league.php (line 264)
  1.         switch ($tag) {
  2.             case 'BACKEND_SEASON':
  3.                 return $this->printBackendSeasonLeague($param$tset$lng);
  4.                 break;
  5.             default:
  6.                 return parent::ReplaceCustomTag($tag$meno$tset$lng$param$index);
  7.         } // switch
  8.     }
  9.     function getAdminBreadCrumbsArray()
  10.     {
season_league->ReplaceCustomTag('PRINT_PAGE', 'rozpis-muzstva', 'default', 'default', '', 0) in /data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/library/Gss/Cms/Core.php (line 318)
  1.             if (strpos($meno',') !== false) { // v nazve je specifikovany lang
  2.                 [$meno$lng] = explode(','$meno);
  3.             }
  4.         }
  5.         $_ $this->ReplaceCustomTag($tag$meno$tset$lng$parameter$index);
  6.         if ($_ === $tag) { // cize nedoslo k nahradeniu, takze skusime genericke metody na nahradenie
  7.             $_ '';
  8.             if ($this->hasProperty($tag)) { // hladany tag je property, takze ju mozme lahkonahradit z DB.
  9.                 $obj $this->get($tag);
Core->ProcessTag('PRINT_PAGE', 'rozpis-muzstva', 'default', 'default', 0) in /data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/library/Gss/Cms/Core.php (line 392)
  1.             $pos2 strpos($template'.>'$pos);
  2.             if ($pos2 === false) {
  3.                 return $template Messages::error("Neukonceny template tag v class: {$this->myName}, tname: {$tname}, tempset: {$tset}, lang: {$lng}<br />" substr($template$pos10));
  4.             }
  5.             $ttag substr($template$pos 2$pos2 $pos 2);
  6.             $template substr_replace($template$this->ProcessTag($ttag$tname$tset$lng$index), $pos$pos2 $pos 2);
  7.         }
  8.         return $template;
  9.     }
Core->ProcessTemplate('<.PRINT_PAGE.>', 'rozpis-muzstva', 'default', 'default', 0) in /data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/library/Gss/Cms/Core.php (line 411)
  1.         }
  2.         if (!$this->checkRights || !$checkRightsNow || $this->ProcessRights($this->myName$tname$tset$lng)) {
  3.             $content Templates::getTemplateByName($this->myName$tname$tset$lng'value');
  4.             return $this->ProcessTemplate($content$rtname$tset$lng$index);
  5.         } else {
  6.             $CACTIVE \request()->getClassName();
  7.             // child rendering
  8.             if ($this->myName != $CACTIVE) {
  9.                 return $this->permissionDeniedChild($tname$tset$lng);
Core->Render('rozpis-muzstva', 'default', 'default') in /data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/library/Gss/Cms/Project.php (line 99)
  1.             // intro
  2.             $INTRO \App\Model\intros::checkActiveIntro();
  3.         } else {
  4.             // content
  5.             $CONTENT $this->Render($TNAME$tset$lng);
  6.         }
  7.         $aLayout $this->getLayout($tset$lng);
  8.         $collapseSidebar '';
  1.         \Gss\Javascript::add($js);
  2.     }
  3.     public function renderFrontendHtml($tset$lng)
  4.     {
  5.         $body $this->renderFrontendBody($tset$lng);
  6.         $lang \Lang::getLocale();
  7.         $preloader $this->preloaderCssAndJs();
  8.         $html = <<<HTML
Project->renderFrontendHtml('default', 'default') in /data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/app/Model/mainclass.php (line 13)
  1. class mainclass extends \Gss\Cms\Model
  2. {
  3.     public function printFrontendHtml($tset$lng)
  4.     {
  5.         return activeModel()->renderFrontendHtml($tset$lng);
  6.     }
  7.     public function printFrontendBody($tset$lng)
  8.     {
  9.         return activeModel()->renderFrontendBody($tset$lng);
mainclass->printFrontendHtml('default', 'default') in /data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/app/Model/mainclass.php (line 34)
  1.     {
  2.         switch ($tag) {
  3.             case 'FRONTEND_BODY':
  4.                 return $this->printFrontendBody($tset$lng);
  5.             case 'FRONTEND_HTML':
  6.                 return $this->printFrontendHtml($tset$lng);
  7.             case 'ADMIN_BODY':
  8.                 return $this->printAdminBody($tset$lng);
  9.             case 'ADMIN_LOGIN_BODY':
  10.                 return $this->printAdminLoginBody($tset$lng);
  11.             case 'AJAX_HTML':
mainclass->ReplaceCustomTag('FRONTEND_HTML', 'default', 'default', 'default', '', 0) in /data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/library/Gss/Cms/Core.php (line 318)
  1.             if (strpos($meno',') !== false) { // v nazve je specifikovany lang
  2.                 [$meno$lng] = explode(','$meno);
  3.             }
  4.         }
  5.         $_ $this->ReplaceCustomTag($tag$meno$tset$lng$parameter$index);
  6.         if ($_ === $tag) { // cize nedoslo k nahradeniu, takze skusime genericke metody na nahradenie
  7.             $_ '';
  8.             if ($this->hasProperty($tag)) { // hladany tag je property, takze ju mozme lahkonahradit z DB.
  9.                 $obj $this->get($tag);
Core->ProcessTag('FRONTEND_HTML', 'default', 'default', 'default', 0) in /data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/library/Gss/Cms/Core.php (line 392)
  1.             $pos2 strpos($template'.>'$pos);
  2.             if ($pos2 === false) {
  3.                 return $template Messages::error("Neukonceny template tag v class: {$this->myName}, tname: {$tname}, tempset: {$tset}, lang: {$lng}<br />" substr($template$pos10));
  4.             }
  5.             $ttag substr($template$pos 2$pos2 $pos 2);
  6.             $template substr_replace($template$this->ProcessTag($ttag$tname$tset$lng$index), $pos$pos2 $pos 2);
  7.         }
  8.         return $template;
  9.     }
Core->ProcessTemplate('<.FRONTEND_HTML.>', 'default', 'default', 'default', 0) in /data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/library/Gss/Cms/Core.php (line 411)
  1.         }
  2.         if (!$this->checkRights || !$checkRightsNow || $this->ProcessRights($this->myName$tname$tset$lng)) {
  3.             $content Templates::getTemplateByName($this->myName$tname$tset$lng'value');
  4.             return $this->ProcessTemplate($content$rtname$tset$lng$index);
  5.         } else {
  6.             $CACTIVE \request()->getClassName();
  7.             // child rendering
  8.             if ($this->myName != $CACTIVE) {
  9.                 return $this->permissionDeniedChild($tname$tset$lng);
  1.         // usualy mainclass
  2.         $page getObject($className$this->getClassId($oRequest));
  3.         Timer::stop('Dispatcher ' get_class($page) . ' render begin');
  4.         $html $page->Render($this->getTemplate($oRequest), request()->getTset(), request()->getLanguage());
  5.         Timer::stop('Dispatcher ' get_class($page) . ' render end');
  6.         $oObject->postRender();
  7.         // ---------------------------------
Frontend->dispatch(object(Request), object(Response)) in /data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/app/Http/KernelFrontend.php (line 94)
  1.             Timer::stop('Plugins dispatched');
  2.             // dispatcher
  3.             Timer::stop('Dispatcher begin');
  4.             $r $oDispatcher->dispatch($request$response);
  5.             Timer::stop('Dispatcher end');
  6.             if ($r instanceof Response) {
  7.                 return $r;
  8.             }
  1.      */
  2.     protected function prepareDestination(Closure $destination)
  3.     {
  4.         return function ($passable) use ($destination) {
  5.             try {
  6.                 return $destination($passable);
  7.             } catch (Throwable $e) {
  8.                 return $this->handleException($passable$e);
  9.             }
  10.         };
  11.     }
  1.                 } catch (\Exception $e) {
  2.                 }
  3.             }
  4.         }
  5.         return $next($request);
  6.     }
  7. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         // Putting the errors in the view for every view allows the developer to just
  2.         // assume that some errors are always available, which is convenient since
  3.         // they don't have to continually run checks for the presence of errors.
  4.         return $next($request);
  5.     }
  6. }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.             $this->startSession($request$session)
  2.         );
  3.         $this->collectGarbage($session);
  4.         $response $next($request);
  5.         $this->storeCurrentUrl($request$session);
  6.         $this->addCookieToResponse($response$session);
  1.         if ($this->manager->shouldBlock() ||
  2.             ($request->route() instanceof Route && $request->route()->locksFor())) {
  3.             return $this->handleRequestWhileBlocking($request$session$next);
  4.         }
  5.         return $this->handleStatefulRequest($request$session$next);
  6.     }
  7.     /**
  8.      * Handle the given request within session state.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      * @param  \Closure  $next
  2.      * @return mixed
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         $response $next($request);
  7.         foreach ($this->cookies->getQueuedCookies() as $cookie) {
  8.             $response->headers->setCookie($cookie);
  9.         }
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      * @param  \Closure  $next
  2.      * @return \Symfony\Component\HttpFoundation\Response
  3.      */
  4.     public function handle($requestClosure $next)
  5.     {
  6.         return $this->encrypt($next($this->decrypt($request)));
  7.     }
  8.     /**
  9.      * Decrypt the cookies on the request.
  10.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.             if ($callback($request)) {
  2.                 return $next($request);
  3.             }
  4.         }
  5.         return parent::handle($request$next);
  6.     }
  7.     /**
  8.      * Transform the given value.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         $this->clean($request);
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Clean the request's data.
  9.      *
  1.             if ($callback($request)) {
  2.                 return $next($request);
  3.             }
  4.         }
  5.         return parent::handle($request$next);
  6.     }
  7.     /**
  8.      * Transform the given value.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.         if ($max && $request->server('CONTENT_LENGTH') > $max) {
  2.             throw new PostTooLargeException;
  3.         }
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Determine the server 'post_max_size' as bytes.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.                 null,
  2.                 $this->getHeaders($data)
  3.             );
  4.         }
  5.         return $next($request);
  6.     }
  7.     /**
  8.      * Determine if the incoming request has a maintenance mode bypass cookie.
  9.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.      */
  2.     public function handle($requestClosure $next)
  3.     {
  4.         // Check if we're dealing with CORS and if we should handle it
  5.         if (! $this->shouldRun($request)) {
  6.             return $next($request);
  7.         }
  8.         // For Preflight, return the Preflight response
  9.         if ($this->cors->isPreflightRequest($request)) {
  10.             $response $this->cors->handlePreflightRequest($request);
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $request::setTrustedProxies([], $this->getTrustedHeaderNames());
  3.         $this->setTrustedProxyIpAddresses($request);
  4.         return $next($request);
  5.     }
  6.     /**
  7.      * Sets the trusted proxies on the request.
  8.      *
  1.                         // since the object we're given was already a fully instantiated object.
  2.                         $parameters = [$passable$stack];
  3.                     }
  4.                     $carry method_exists($pipe$this->method)
  5.                                     ? $pipe->{$this->method}(...$parameters)
  6.                                     : $pipe(...$parameters);
  7.                     return $this->handleCarry($carry);
  8.                 } catch (Throwable $e) {
  9.                     return $this->handleException($passable$e);
  1.     {
  2.         $pipeline array_reduce(
  3.             array_reverse($this->pipes()), $this->carry(), $this->prepareDestination($destination)
  4.         );
  5.         return $pipeline($this->passable);
  6.     }
  7.     /**
  8.      * Run the pipeline and return the result.
  9.      *
  1.         $this->bootstrap();
  2.         return (new Pipeline($this->app))
  3.                     ->send($request)
  4.                     ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
  5.                     ->then($this->dispatchToRouter());
  6.     }
  7.     /**
  8.      * Bootstrap the application for HTTP requests.
  9.      *
  1.     public function handle($request)
  2.     {
  3.         try {
  4.             $request->enableHttpMethodParameterOverride();
  5.             $response $this->sendRequestThroughRouter($request);
  6.         } catch (Throwable $e) {
  7.             $this->reportException($e);
  8.             $response $this->renderException($request$e);
  9.         }
  1. $kernel $app->make(Illuminate\Contracts\Http\Kernel::class);
  2. \Gss\Timer\Timer::stop('kernel created');
  3. $response $kernel->handle(
  4.     $request App\Http\Request::capture()
  5. );
  6. $response->send();
  7. $kernel->terminate($request$response);

Stack Trace

Error
Error:
Call to a member function getId() on null

  at /data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/app/Storage/SeasonClub.php:572
  at App\Storage\SeasonClub->loadMatchesOptimized(true, false, false, false, false)
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/app/View/Frontend/SeasonLeague/TeamMatches.php:177)
  at App\View\Frontend\SeasonLeague\TeamMatches->renderMatches()
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/app/View/Frontend/SeasonLeague/TeamMatches.php:152)
  at App\View\Frontend\SeasonLeague\TeamMatches->render()
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/app/View/Frontend/SeasonLeague.php:1222)
  at App\View\Frontend\SeasonLeague->renderMatchesByTeam()
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/app/View/Frontend/SeasonLeague.php:756)
  at App\View\Frontend\SeasonLeague->renderLeague()
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/app/View/Frontend/SeasonLeague.php:130)
  at App\View\Frontend\SeasonLeague->render()
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/app/Model/season_league.php:77)
  at App\Model\season_league->printPage('default', 'default')
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/library/Gss/Cms/Model.php:1398)
  at Gss\Cms\Model->ReplaceCustomTag('PRINT_PAGE', 'rozpis-muzstva', 'default', 'default', '', 0)
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/app/Model/season_league.php:264)
  at App\Model\season_league->ReplaceCustomTag('PRINT_PAGE', 'rozpis-muzstva', 'default', 'default', '', 0)
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/library/Gss/Cms/Core.php:318)
  at Gss\Cms\Core->ProcessTag('PRINT_PAGE', 'rozpis-muzstva', 'default', 'default', 0)
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/library/Gss/Cms/Core.php:392)
  at Gss\Cms\Core->ProcessTemplate('<.PRINT_PAGE.>', 'rozpis-muzstva', 'default', 'default', 0)
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/library/Gss/Cms/Core.php:411)
  at Gss\Cms\Core->Render('rozpis-muzstva', 'default', 'default')
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/library/Gss/Cms/Project.php:99)
  at Gss\Cms\Project->renderFrontendBody('default', 'default')
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/library/Gss/Cms/Project.php:34)
  at Gss\Cms\Project->renderFrontendHtml('default', 'default')
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/app/Model/mainclass.php:13)
  at App\Model\mainclass->printFrontendHtml('default', 'default')
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/app/Model/mainclass.php:34)
  at App\Model\mainclass->ReplaceCustomTag('FRONTEND_HTML', 'default', 'default', 'default', '', 0)
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/library/Gss/Cms/Core.php:318)
  at Gss\Cms\Core->ProcessTag('FRONTEND_HTML', 'default', 'default', 'default', 0)
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/library/Gss/Cms/Core.php:392)
  at Gss\Cms\Core->ProcessTemplate('<.FRONTEND_HTML.>', 'default', 'default', 'default', 0)
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/library/Gss/Cms/Core.php:411)
  at Gss\Cms\Core->Render('default', 'default', 'default')
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/app/Http/Dispatcher/Frontend.php:167)
  at App\Http\Dispatcher\Frontend->dispatch(object(Request), object(Response))
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/app/Http/KernelFrontend.php:94)
  at App\Http\KernelFrontend->App\Http\{closure}(object(Request))
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:141)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/app/Http/Middleware/FrontendUserAuth.php:55)
  at App\Http\Middleware\FrontendUserAuth->handle(object(Request), object(Closure))
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/vendor/laravel/framework/src/Illuminate/View/Middleware/ShareErrorsFromSession.php:49)
  at Illuminate\View\Middleware\ShareErrorsFromSession->handle(object(Request), object(Closure))
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:121)
  at Illuminate\Session\Middleware\StartSession->handleStatefulRequest(object(Request), object(Store), object(Closure))
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php:64)
  at Illuminate\Session\Middleware\StartSession->handle(object(Request), object(Closure))
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/AddQueuedCookiesToResponse.php:37)
  at Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse->handle(object(Request), object(Closure))
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/vendor/laravel/framework/src/Illuminate/Cookie/Middleware/EncryptCookies.php:67)
  at Illuminate\Cookie\Middleware\EncryptCookies->handle(object(Request), object(Closure))
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php:31)
  at Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull->handle(object(Request), object(Closure))
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php:21)
  at Illuminate\Foundation\Http\Middleware\TransformsRequest->handle(object(Request), object(Closure))
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php:40)
  at Illuminate\Foundation\Http\Middleware\TrimStrings->handle(object(Request), object(Closure))
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php:27)
  at Illuminate\Foundation\Http\Middleware\ValidatePostSize->handle(object(Request), object(Closure))
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/vendor/laravel/framework/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php:86)
  at Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance->handle(object(Request), object(Closure))
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/vendor/fruitcake/laravel-cors/src/HandleCors.php:38)
  at Fruitcake\Cors\HandleCors->handle(object(Request), object(Closure))
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/vendor/laravel/framework/src/Illuminate/Http/Middleware/TrustProxies.php:39)
  at Illuminate\Http\Middleware\TrustProxies->handle(object(Request), object(Closure))
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:180)
  at Illuminate\Pipeline\Pipeline->Illuminate\Pipeline\{closure}(object(Request))
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php:116)
  at Illuminate\Pipeline\Pipeline->then(object(Closure))
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:142)
  at Illuminate\Foundation\Http\Kernel->sendRequestThroughRouter(object(Request))
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:111)
  at Illuminate\Foundation\Http\Kernel->handle(object(Request))
     (/data/7/4/749c17fb-d9b9-41b1-af7d-d2aa4c20918c/stolnytenis.info/web/www/index.php:57)