Hi! how can i help you.

Explore the knowledge base

Check out our knowledge base to see if your question has already been answered.

Contact Our Team

If you still can't find an answer to what you're looking for, or you have a specific question, open a new ticket and we'd be happy to help!

Contact Us
Warning: file_put_contents(): Only 417792 of 718842 bytes written, possibly out of free disk space (500 Internal Server Error)

Symfony Exception

ErrorException

HTTP 500 Internal Server Error

Warning: file_put_contents(): Only 417792 of 718842 bytes written, possibly out of free disk space

Exception

ErrorException

  1.         if (\function_exists('gzcompress')) {
  2.             $file 'compress.zlib://'.$file;
  3.             stream_context_set_option($context'zlib''level'3);
  4.         }
  5.         if (false === file_put_contents($fileserialize($data), 0$context)) {
  6.             return false;
  7.         }
  8.         if (!$profileIndexed) {
  9.             // Add to index
  1.             if ($collector instanceof LateDataCollectorInterface) {
  2.                 $collector->lateCollect();
  3.             }
  4.         }
  5.         if (!($ret $this->storage->write($profile)) && null !== $this->logger) {
  6.             $this->logger->warning('Unable to store the profiler information.', ['configured_storage' => \get_class($this->storage)]);
  7.         }
  8.         return $ret;
  9.     }
  1.             }
  2.         }
  3.         // save profiles
  4.         foreach ($this->profiles as $request) {
  5.             $this->profiler->saveProfile($this->profiles[$request]);
  6.         }
  7.         $this->profiles = new \SplObjectStorage();
  8.         $this->parents = new \SplObjectStorage();
  9.     }
  1.         $this->called true;
  2.         $this->priority $dispatcher->getListenerPriority($eventName$this->listener);
  3.         $e $this->stopwatch->start($this->name'event_listener');
  4.         ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         if ($e->isStarted()) {
  6.             $e->stop();
  7.         }
  1.     {
  2.         foreach ($listeners as $listener) {
  3.             if ($event->isPropagationStopped()) {
  4.                 break;
  5.             }
  6.             $listener($event$eventName$this);
  7.         }
  8.     }
  9.     /**
  10.      * Sorts the internal list of listeners for the given event by priority.
  1.      * @param object     $event     The event object to pass to the event handlers/listeners
  2.      */
  3.     protected function callListeners(iterable $listenersstring $eventName$event)
  4.     {
  5.         if ($event instanceof Event) {
  6.             $this->doDispatch($listeners$eventName$event);
  7.             return;
  8.         }
  9.         $stoppable $event instanceof ContractsEvent || $event instanceof StoppableEventInterface;
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function terminate(Request $requestResponse $response)
  5.     {
  6.         $this->dispatcher->dispatch(new TerminateEvent($this$request$response), KernelEvents::TERMINATE);
  7.     }
  8.     /**
  9.      * @internal
  10.      */
in vendor/symfony/http-kernel/Kernel.php -> terminate (line 166)
  1.         if (false === $this->booted) {
  2.             return;
  3.         }
  4.         if ($this->getHttpKernel() instanceof TerminableInterface) {
  5.             $this->getHttpKernel()->terminate($request$response);
  6.         }
  7.     }
  8.     /**
  9.      * {@inheritdoc}
Kernel->terminate(object(Request), object(Response)) in public/index.php (line 27)
  1. $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  2. $request Request::createFromGlobals();
  3. $response $kernel->handle($request);
  4. $response->send();
  5. $kernel->terminate($request$response);

Logs 1

Level Channel Message
INFO 13:28:12 php User Deprecated: Using the WebserverBundle is deprecated since Symfony 4.4. The new Symfony local server has more features, you can use it instead.
{
    "exception": {}
}
INFO 13:28:12 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 13:28:12 request Matched route "helpdesk_knowledgebase".
{
    "route": "helpdesk_knowledgebase",
    "route_parameters": {
        "_route": "helpdesk_knowledgebase",
        "_controller": "Webkul\\UVDesk\\SupportCenterBundle\\Controller\\Website::home",
        "_locale": "en"
    },
    "request_uri": "http://tickets.spartanit.pro/en/",
    "method": "GET"
}
INFO 13:28:12 php User Deprecated: Since symfony/security-csrf 5.3: Passing a "Symfony\Component\HttpFoundation\Session\SessionInterface" to "Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage" is deprecated, use a "Symfony\Component\HttpFoundation\RequestStack" instead.
{
    "exception": {}
}
INFO 13:28:12 security Populated the TokenStorage with an anonymous Token.
DEBUG 13:28:12 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 13:28:12 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 13:28:12 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 13:28:12 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 13:28:12 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 13:28:12 event Notified event "kernel.request" to listener "Symfony\Bundle\FrameworkBundle\EventListener\ResolveControllerNameSubscriber::resolveControllerName".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\EventListener\\ResolveControllerNameSubscriber::resolveControllerName"
}
DEBUG 13:28:12 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 13:28:12 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 13:28:12 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 13:28:12 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 13:28:12 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 13:28:12 event Notified event "kernel.request" to listener "Webkul\UVDesk\ExtensionFrameworkBundle\EventListener\Kernel::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Webkul\\UVDesk\\ExtensionFrameworkBundle\\EventListener\\Kernel::onKernelRequest"
}
DEBUG 13:28:12 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 13:28:12 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 13:28:12 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 13:28:12 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 13:28:12 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 13:28:12 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 13:28:12 event Notified event "kernel.controller_arguments" to listener "Webkul\UVDesk\ExtensionFrameworkBundle\EventListener\Kernel::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Webkul\\UVDesk\\ExtensionFrameworkBundle\\EventListener\\Kernel::onKernelControllerArguments"
}
DEBUG 13:28:12 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
DEBUG 13:28:12 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
DEBUG 13:28:12 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
DEBUG 13:28:12 doctrine SELECT t0.id AS id_1, t0.name AS name_2, t0.code AS code_3, t0.logo AS logo_4, t0.theme_color AS theme_color_5, t0.favicon AS favicon_6, t0.created_at AS created_at_7, t0.updated_at AS updated_at_8, t0.is_active AS is_active_9, t0.timezone AS timezone_10, t0.timeformat AS timeformat_11 FROM uv_website t0 WHERE t0.code = ? LIMIT 1
[
    "knowledgebase"
]
DEBUG 13:28:12 doctrine SELECT t0.id AS id_1, t0.status AS status_2, t0.brand_color AS brand_color_3, t0.page_background_color AS page_background_color_4, t0.header_background_color AS header_background_color_5, t0.link_color AS link_color_6, t0.article_text_color AS article_text_color_7, t0.ticket_create_option AS ticket_create_option_8, t0.site_description AS site_description_9, t0.meta_description AS meta_description_10, t0.meta_keywords AS meta_keywords_11, t0.homepage_content AS homepage_content_12, t0.white_list AS white_list_13, t0.black_list AS black_list_14, t0.created_at AS created_at_15, t0.updated_at AS updated_at_16, t0.broadcast_message AS broadcast_message_17, t0.disable_customer_login AS disable_customer_login_18, t0.script AS script_19, t0.custom_css AS custom_css_20, t0.is_active AS is_active_21, t0.header_links AS header_links_22, t0.footer_links AS footer_links_23, t0.banner_background_color AS banner_background_color_24, t0.link_hover_color AS link_hover_color_25, t0.login_required_to_create AS login_required_to_create_26, t0.remove_customer_login_button AS remove_customer_login_button_27, t0.remove_branding_content AS remove_branding_content_28, t0.website AS website_29 FROM uv_website_knowledgebase t0 WHERE t0.website = ? AND t0.status = ? LIMIT 1
[
    2,
    true
]
DEBUG 13:28:12 doctrine SELECT u0_.id AS id_0, u0_.name AS name_1, u0_.slug AS slug_2, u0_.content AS content_3, u0_.stared AS stared_4 FROM uv_article u0_ WHERE u0_.status = ? ORDER BY u0_.viewed DESC LIMIT 10
[
    1
]
DEBUG 13:28:12 doctrine SELECT u0_.id AS id_0, u0_.name AS name_1, u0_.description AS description_2, u0_.visibility AS visibility_3, u0_.sort_order AS sort_order_4, u0_.date_added AS date_added_5, u0_.date_updated AS date_updated_6, u0_.solution_image AS solution_image_7 FROM uv_solutions u0_ WHERE u0_.visibility = ?
[
    "public"
]
DEBUG 13:28:12 doctrine SELECT u0_.id AS id_0, u0_.name AS name_1, u0_.description AS description_2 FROM uv_solution_category u0_ WHERE u0_.status = ? ORDER BY u0_.date_added DESC
[
    true
]
INFO 13:28:12 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 13:28:12 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 13:28:12 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 13:28:12 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
DEBUG 13:28:12 doctrine SELECT t0.id AS id_1, t0.name AS name_2, t0.code AS code_3, t0.logo AS logo_4, t0.theme_color AS theme_color_5, t0.favicon AS favicon_6, t0.created_at AS created_at_7, t0.updated_at AS updated_at_8, t0.is_active AS is_active_9, t0.timezone AS timezone_10, t0.timeformat AS timeformat_11 FROM uv_website t0 WHERE t0.code = ? LIMIT 1
[
    "knowledgebase"
]
DEBUG 13:28:12 doctrine SELECT t0.id AS id_1, t0.name AS name_2, t0.code AS code_3, t0.logo AS logo_4, t0.theme_color AS theme_color_5, t0.favicon AS favicon_6, t0.created_at AS created_at_7, t0.updated_at AS updated_at_8, t0.is_active AS is_active_9, t0.timezone AS timezone_10, t0.timeformat AS timeformat_11 FROM uv_website t0 WHERE t0.code = ? LIMIT 1
[
    "knowledgebase"
]
DEBUG 13:28:12 doctrine SELECT t0.id AS id_1, t0.status AS status_2, t0.brand_color AS brand_color_3, t0.page_background_color AS page_background_color_4, t0.header_background_color AS header_background_color_5, t0.link_color AS link_color_6, t0.article_text_color AS article_text_color_7, t0.ticket_create_option AS ticket_create_option_8, t0.site_description AS site_description_9, t0.meta_description AS meta_description_10, t0.meta_keywords AS meta_keywords_11, t0.homepage_content AS homepage_content_12, t0.white_list AS white_list_13, t0.black_list AS black_list_14, t0.created_at AS created_at_15, t0.updated_at AS updated_at_16, t0.broadcast_message AS broadcast_message_17, t0.disable_customer_login AS disable_customer_login_18, t0.script AS script_19, t0.custom_css AS custom_css_20, t0.is_active AS is_active_21, t0.header_links AS header_links_22, t0.footer_links AS footer_links_23, t0.banner_background_color AS banner_background_color_24, t0.link_hover_color AS link_hover_color_25, t0.login_required_to_create AS login_required_to_create_26, t0.remove_customer_login_button AS remove_customer_login_button_27, t0.remove_branding_content AS remove_branding_content_28, t0.website AS website_29 FROM uv_website_knowledgebase t0 WHERE t0.website = ? AND t0.is_active = ? LIMIT 1
[
    2,
    1
]
DEBUG 13:28:12 doctrine SELECT t0.id AS id_1, t0.name AS name_2, t0.code AS code_3, t0.logo AS logo_4, t0.theme_color AS theme_color_5, t0.favicon AS favicon_6, t0.created_at AS created_at_7, t0.updated_at AS updated_at_8, t0.is_active AS is_active_9, t0.timezone AS timezone_10, t0.timeformat AS timeformat_11 FROM uv_website t0 WHERE t0.code = ? LIMIT 1
[
    "knowledgebase"
]
DEBUG 13:28:12 doctrine SELECT t0.id AS id_1, t0.status AS status_2, t0.brand_color AS brand_color_3, t0.page_background_color AS page_background_color_4, t0.header_background_color AS header_background_color_5, t0.link_color AS link_color_6, t0.article_text_color AS article_text_color_7, t0.ticket_create_option AS ticket_create_option_8, t0.site_description AS site_description_9, t0.meta_description AS meta_description_10, t0.meta_keywords AS meta_keywords_11, t0.homepage_content AS homepage_content_12, t0.white_list AS white_list_13, t0.black_list AS black_list_14, t0.created_at AS created_at_15, t0.updated_at AS updated_at_16, t0.broadcast_message AS broadcast_message_17, t0.disable_customer_login AS disable_customer_login_18, t0.script AS script_19, t0.custom_css AS custom_css_20, t0.is_active AS is_active_21, t0.header_links AS header_links_22, t0.footer_links AS footer_links_23, t0.banner_background_color AS banner_background_color_24, t0.link_hover_color AS link_hover_color_25, t0.login_required_to_create AS login_required_to_create_26, t0.remove_customer_login_button AS remove_customer_login_button_27, t0.remove_branding_content AS remove_branding_content_28, t0.website AS website_29 FROM uv_website_knowledgebase t0 WHERE t0.website = ? LIMIT 1
[
    2
]
INFO 13:28:12 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 13:28:12 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 13:28:12 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 13:28:12 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 13:28:12 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
DEBUG 13:28:12 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 13:28:12 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 13:28:12 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 13:28:12 event Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
DEBUG 13:28:12 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse"
}
DEBUG 13:28:12 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 13:28:12 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 13:28:12 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 13:28:12 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 13:28:12 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
DEBUG 13:28:12 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
DEBUG 13:28:12 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest"
}
DEBUG 13:28:12 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
DEBUG 13:28:12 event Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
DEBUG 13:28:12 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
INFO 13:28:12 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
DEBUG 13:28:12 event Notified event "kernel.terminate" to listener "Symfony\Bundle\SwiftmailerBundle\EventListener\EmailSenderListener::onTerminate".
{
    "event": "kernel.terminate",
    "listener": "Symfony\\Bundle\\SwiftmailerBundle\\EventListener\\EmailSenderListener::onTerminate"
}
DEBUG 13:28:12 event Notified event "kernel.terminate" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelTerminate".
{
    "event": "kernel.terminate",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelTerminate"
}
WARNING 13:28:12 php Uncaught Warning: file_put_contents(): Only 417792 of 718842 bytes written, possibly out of free disk space
{
    "exception": {
        "xdebug_message": "<tr><th align='left' bgcolor='#f57900' colspan=\"5\"><span style='background-color: #cc0000; color: #fce94f; font-size: x-large;'>( ! )</span> ErrorException: Warning: file_put_contents(): Only 417792 of 718842 bytes written, possibly out of free disk space in /var/www/uvdesk/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php on line <i>175</i></th></tr>\n<tr><th align='left' bgcolor='#e9b96e' colspan='5'>Call Stack</th></tr>\n<tr><th align='center' bgcolor='#eeeeec'>#</th><th align='left' bgcolor='#eeeeec'>Time</th><th align='left' bgcolor='#eeeeec'>Memory</th><th align='left' bgcolor='#eeeeec'>Function</th><th align='left' bgcolor='#eeeeec'>Location</th></tr>\n<tr><td bgcolor='#eeeeec' align='center'>1</td><td bgcolor='#eeeeec' align='center'>0.0001</td><td bgcolor='#eeeeec' align='right'>403200</td><td bgcolor='#eeeeec'>{main}(  )</td><td title='/var/www/uvdesk/public/index.php' bgcolor='#eeeeec'>.../index.php<b>:</b>0</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>2</td><td bgcolor='#eeeeec' align='center'>0.1695</td><td bgcolor='#eeeeec' align='right'>6270400</td><td bgcolor='#eeeeec'>Symfony\\Component\\HttpKernel\\Kernel->terminate( <span>$request = </span><span>class Symfony\\Component\\HttpFoundation\\Request { public $attributes = class Symfony\\Component\\HttpFoundation\\ParameterBag { protected $parameters = [...] }; public $request = class Symfony\\Component\\HttpFoundation\\InputBag { protected $parameters = [...] }; public $query = class Symfony\\Component\\HttpFoundation\\InputBag { protected $parameters = [...] }; public $server = class Symfony\\Component\\HttpFoundation\\ServerBag { protected $parameters = [...] }; public $files = class Symfony\\Component\\HttpFoundation\\FileBag { protected $parameters = [...] }; public $cookies = class Symfony\\Component\\HttpFoundation\\InputBag { protected $parameters = [...] }; public $headers = class Symfony\\Component\\HttpFoundation\\HeaderBag { protected $headers = [...]; protected $cacheControl = [...] }; protected $content = &#39;&#39;; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = &#39;/en/&#39;; protected $requestUri = &#39;/en/&#39;; protected $baseUrl = &#39;&#39;; protected $basePath = &#39;&#39;; protected $method = &#39;GET&#39;; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { protected $storage = class Symfony\\Component\\HttpFoundation\\Session\\Storage\\NativeSessionStorage { ... }; private $flashName = &#39;flashes&#39;; private $attributeName = &#39;attributes&#39;; private $data = [...]; private $usageIndex = 11; private $usageReporter = NULL }; protected $locale = &#39;en&#39;; protected $defaultLocale = &#39;en&#39;; private $preferredFormat = NULL; private $isHostValid = TRUE; private $isForwardedValid = TRUE; private $isSafeContentPreferred = NULL }</span>, <span>$response = </span><span>class Symfony\\Component\\HttpFoundation\\Response { public $headers = class Symfony\\Component\\HttpFoundation\\ResponseHeaderBag { protected $computedCacheControl = [...]; protected $cookies = [...]; protected $headerNames = [...]; protected $headers = [...]; protected $cacheControl = [...] }; protected $content = &#39;&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;\\n&lt;html lang=&quot;en&quot;&gt;\\n    &lt;head&gt;\\n        &lt;link rel=&quot;stylesheet&quot; href=&quot;/bundles/uvdesksupportcenter/css/knowledgebase.css&quot;&gt;\\n        &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.7.14/css/bootstrap-datetimepicker.min.css&quot;&gt;\\n        \\n        &lt;script src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js&quot;&gt;&lt;/script&gt;\\n        &lt;script src=&quot;htt&#39;; protected $version = &#39;1.1&#39;; protected $statusCode = 200; protected $statusText = &#39;OK&#39;; protected $charset = &#39;UTF-8&#39; }</span> )</td><td title='/var/www/uvdesk/public/index.php' bgcolor='#eeeeec'>.../index.php<b>:</b>27</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>3</td><td bgcolor='#eeeeec' align='center'>0.1695</td><td bgcolor='#eeeeec' align='right'>6270400</td><td bgcolor='#eeeeec'>Symfony\\Component\\HttpKernel\\HttpKernel->terminate( <span>$request = </span><span>class Symfony\\Component\\HttpFoundation\\Request { public $attributes = class Symfony\\Component\\HttpFoundation\\ParameterBag { protected $parameters = [...] }; public $request = class Symfony\\Component\\HttpFoundation\\InputBag { protected $parameters = [...] }; public $query = class Symfony\\Component\\HttpFoundation\\InputBag { protected $parameters = [...] }; public $server = class Symfony\\Component\\HttpFoundation\\ServerBag { protected $parameters = [...] }; public $files = class Symfony\\Component\\HttpFoundation\\FileBag { protected $parameters = [...] }; public $cookies = class Symfony\\Component\\HttpFoundation\\InputBag { protected $parameters = [...] }; public $headers = class Symfony\\Component\\HttpFoundation\\HeaderBag { protected $headers = [...]; protected $cacheControl = [...] }; protected $content = &#39;&#39;; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = &#39;/en/&#39;; protected $requestUri = &#39;/en/&#39;; protected $baseUrl = &#39;&#39;; protected $basePath = &#39;&#39;; protected $method = &#39;GET&#39;; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { protected $storage = class Symfony\\Component\\HttpFoundation\\Session\\Storage\\NativeSessionStorage { ... }; private $flashName = &#39;flashes&#39;; private $attributeName = &#39;attributes&#39;; private $data = [...]; private $usageIndex = 11; private $usageReporter = NULL }; protected $locale = &#39;en&#39;; protected $defaultLocale = &#39;en&#39;; private $preferredFormat = NULL; private $isHostValid = TRUE; private $isForwardedValid = TRUE; private $isSafeContentPreferred = NULL }</span>, <span>$response = </span><span>class Symfony\\Component\\HttpFoundation\\Response { public $headers = class Symfony\\Component\\HttpFoundation\\ResponseHeaderBag { protected $computedCacheControl = [...]; protected $cookies = [...]; protected $headerNames = [...]; protected $headers = [...]; protected $cacheControl = [...] }; protected $content = &#39;&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;\\n&lt;html lang=&quot;en&quot;&gt;\\n    &lt;head&gt;\\n        &lt;link rel=&quot;stylesheet&quot; href=&quot;/bundles/uvdesksupportcenter/css/knowledgebase.css&quot;&gt;\\n        &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.7.14/css/bootstrap-datetimepicker.min.css&quot;&gt;\\n        \\n        &lt;script src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js&quot;&gt;&lt;/script&gt;\\n        &lt;script src=&quot;htt&#39;; protected $version = &#39;1.1&#39;; protected $statusCode = 200; protected $statusText = &#39;OK&#39;; protected $charset = &#39;UTF-8&#39; }</span> )</td><td title='/var/www/uvdesk/vendor/symfony/http-kernel/Kernel.php' bgcolor='#eeeeec'>.../Kernel.php<b>:</b>166</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>4</td><td bgcolor='#eeeeec' align='center'>0.1695</td><td bgcolor='#eeeeec' align='right'>6270528</td><td bgcolor='#eeeeec'>Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher->dispatch( <span>$event = </span><span>class Symfony\\Component\\HttpKernel\\Event\\TerminateEvent { private ${Symfony\\Component\\HttpKernel\\Event\\PostResponseEvent}response = class Symfony\\Component\\HttpFoundation\\Response { public $headers = class Symfony\\Component\\HttpFoundation\\ResponseHeaderBag { ... }; protected $content = &#39;&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;\\n&lt;html lang=&quot;en&quot;&gt;\\n    &lt;head&gt;\\n        &lt;link rel=&quot;stylesheet&quot; href=&quot;/bundles/uvdesksupportcenter/css/knowledgebase.css&quot;&gt;\\n        &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.7.14/css/bootstrap-datetimepicker.min.css&quot;&gt;\\n        \\n        &lt;script src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js&quot;&gt;&lt;/script&gt;\\n        &lt;script src=&quot;htt&#39;; protected $version = &#39;1.1&#39;; protected $statusCode = 200; protected $statusText = &#39;OK&#39;; protected $charset = &#39;UTF-8&#39; }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}kernel = class Symfony\\Component\\HttpKernel\\HttpKernel { protected $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; protected $resolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableControllerResolver { ... }; protected $requestStack = class Symfony\\Component\\HttpFoundation\\RequestStack { ... }; private $argumentResolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableArgumentResolver { ... } }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}request = class Symfony\\Component\\HttpFoundation\\Request { public $attributes = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $request = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $query = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $server = class Symfony\\Component\\HttpFoundation\\ServerBag { ... }; public $files = class Symfony\\Component\\HttpFoundation\\FileBag { ... }; public $cookies = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $headers = class Symfony\\Component\\HttpFoundation\\HeaderBag { ... }; protected $content = &#39;&#39;; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = &#39;/en/&#39;; protected $requestUri = &#39;/en/&#39;; protected $baseUrl = &#39;&#39;; protected $basePath = &#39;&#39;; protected $method = &#39;GET&#39;; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { ... }; protected $locale = &#39;en&#39;; protected $defaultLocale = &#39;en&#39;; private $preferredFormat = NULL; private $isHostValid = TRUE; private $isForwardedValid = TRUE; private $isSafeContentPreferred = NULL }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}requestType = 1; private ${Symfony\\Component\\EventDispatcher\\Event}propagationStopped = FALSE }</span>, <span>&#39;kernel.terminate&#39;</span> )</td><td title='/var/www/uvdesk/vendor/symfony/http-kernel/HttpKernel.php' bgcolor='#eeeeec'>.../HttpKernel.php<b>:</b>100</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>5</td><td bgcolor='#eeeeec' align='center'>0.1696</td><td bgcolor='#eeeeec' align='right'>6273320</td><td bgcolor='#eeeeec'>Symfony\\Component\\EventDispatcher\\EventDispatcher->dispatch( <span>$event = </span><span>class Symfony\\Component\\HttpKernel\\Event\\TerminateEvent { private ${Symfony\\Component\\HttpKernel\\Event\\PostResponseEvent}response = class Symfony\\Component\\HttpFoundation\\Response { public $headers = class Symfony\\Component\\HttpFoundation\\ResponseHeaderBag { ... }; protected $content = &#39;&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;\\n&lt;html lang=&quot;en&quot;&gt;\\n    &lt;head&gt;\\n        &lt;link rel=&quot;stylesheet&quot; href=&quot;/bundles/uvdesksupportcenter/css/knowledgebase.css&quot;&gt;\\n        &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.7.14/css/bootstrap-datetimepicker.min.css&quot;&gt;\\n        \\n        &lt;script src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js&quot;&gt;&lt;/script&gt;\\n        &lt;script src=&quot;htt&#39;; protected $version = &#39;1.1&#39;; protected $statusCode = 200; protected $statusText = &#39;OK&#39;; protected $charset = &#39;UTF-8&#39; }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}kernel = class Symfony\\Component\\HttpKernel\\HttpKernel { protected $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; protected $resolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableControllerResolver { ... }; protected $requestStack = class Symfony\\Component\\HttpFoundation\\RequestStack { ... }; private $argumentResolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableArgumentResolver { ... } }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}request = class Symfony\\Component\\HttpFoundation\\Request { public $attributes = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $request = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $query = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $server = class Symfony\\Component\\HttpFoundation\\ServerBag { ... }; public $files = class Symfony\\Component\\HttpFoundation\\FileBag { ... }; public $cookies = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $headers = class Symfony\\Component\\HttpFoundation\\HeaderBag { ... }; protected $content = &#39;&#39;; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = &#39;/en/&#39;; protected $requestUri = &#39;/en/&#39;; protected $baseUrl = &#39;&#39;; protected $basePath = &#39;&#39;; protected $method = &#39;GET&#39;; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { ... }; protected $locale = &#39;en&#39;; protected $defaultLocale = &#39;en&#39;; private $preferredFormat = NULL; private $isHostValid = TRUE; private $isForwardedValid = TRUE; private $isSafeContentPreferred = NULL }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}requestType = 1; private ${Symfony\\Component\\EventDispatcher\\Event}propagationStopped = FALSE }</span>, <span>&#39;kernel.terminate&#39;</span> )</td><td title='/var/www/uvdesk/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php' bgcolor='#eeeeec'>.../TraceableEventDispatcher.php<b>:</b>168</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>6</td><td bgcolor='#eeeeec' align='center'>0.1696</td><td bgcolor='#eeeeec' align='right'>6273792</td><td bgcolor='#eeeeec'>Symfony\\Component\\EventDispatcher\\EventDispatcher->callListeners( <span>$listeners = </span><span>[0 =&gt; class Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener { private $listener = [...]; private $optimizedListener = class Closure { virtual $closure = &quot;$this-&gt;onTerminate&quot;, ... }; private $name = &#39;Symfony\\\\Bundle\\\\SwiftmailerBundle\\\\EventListener\\\\EmailSenderListener&#39;; private $called = TRUE; private $stoppedPropagation = FALSE; private $stopwatch = class Symfony\\Component\\Stopwatch\\Stopwatch { ... }; private $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; private $pretty = &#39;Symfony\\\\Bundle\\\\SwiftmailerBundle\\\\EventListener\\\\EmailSenderListener::onTerminate&#39;; private $stub = class Symfony\\Component\\VarDumper\\Caster\\ClassStub { ... }; private $priority = 0 }, 1 =&gt; class Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener { private $listener = [...]; private $optimizedListener = class Closure { virtual $closure = &quot;$this-&gt;onKernelTerminate&quot;, ... }; private $name = &#39;Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\ProfilerListener&#39;; private $called = TRUE; private $stoppedPropagation = FALSE; private $stopwatch = class Symfony\\Component\\Stopwatch\\Stopwatch { ... }; private $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; private $pretty = &#39;Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\ProfilerListener::onKernelTerminate&#39;; private $stub = class Symfony\\Component\\VarDumper\\Caster\\ClassStub { ... }; private $priority = -1024 }]</span>, <span>$eventName = </span><span>&#39;kernel.terminate&#39;</span>, <span>$event = </span><span>class Symfony\\Component\\HttpKernel\\Event\\TerminateEvent { private ${Symfony\\Component\\HttpKernel\\Event\\PostResponseEvent}response = class Symfony\\Component\\HttpFoundation\\Response { public $headers = class Symfony\\Component\\HttpFoundation\\ResponseHeaderBag { ... }; protected $content = &#39;&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;\\n&lt;html lang=&quot;en&quot;&gt;\\n    &lt;head&gt;\\n        &lt;link rel=&quot;stylesheet&quot; href=&quot;/bundles/uvdesksupportcenter/css/knowledgebase.css&quot;&gt;\\n        &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.7.14/css/bootstrap-datetimepicker.min.css&quot;&gt;\\n        \\n        &lt;script src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js&quot;&gt;&lt;/script&gt;\\n        &lt;script src=&quot;htt&#39;; protected $version = &#39;1.1&#39;; protected $statusCode = 200; protected $statusText = &#39;OK&#39;; protected $charset = &#39;UTF-8&#39; }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}kernel = class Symfony\\Component\\HttpKernel\\HttpKernel { protected $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; protected $resolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableControllerResolver { ... }; protected $requestStack = class Symfony\\Component\\HttpFoundation\\RequestStack { ... }; private $argumentResolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableArgumentResolver { ... } }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}request = class Symfony\\Component\\HttpFoundation\\Request { public $attributes = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $request = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $query = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $server = class Symfony\\Component\\HttpFoundation\\ServerBag { ... }; public $files = class Symfony\\Component\\HttpFoundation\\FileBag { ... }; public $cookies = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $headers = class Symfony\\Component\\HttpFoundation\\HeaderBag { ... }; protected $content = &#39;&#39;; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = &#39;/en/&#39;; protected $requestUri = &#39;/en/&#39;; protected $baseUrl = &#39;&#39;; protected $basePath = &#39;&#39;; protected $method = &#39;GET&#39;; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { ... }; protected $locale = &#39;en&#39;; protected $defaultLocale = &#39;en&#39;; private $preferredFormat = NULL; private $isHostValid = TRUE; private $isForwardedValid = TRUE; private $isSafeContentPreferred = NULL }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}requestType = 1; private ${Symfony\\Component\\EventDispatcher\\Event}propagationStopped = FALSE }</span> )</td><td title='/var/www/uvdesk/vendor/symfony/event-dispatcher/EventDispatcher.php' bgcolor='#eeeeec'>.../EventDispatcher.php<b>:</b>73</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>7</td><td bgcolor='#eeeeec' align='center'>0.1696</td><td bgcolor='#eeeeec' align='right'>6273792</td><td bgcolor='#eeeeec'>Symfony\\Component\\EventDispatcher\\EventDispatcher->doDispatch( <span>$listeners = </span><span>[0 =&gt; class Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener { private $listener = [...]; private $optimizedListener = class Closure { virtual $closure = &quot;$this-&gt;onTerminate&quot;, ... }; private $name = &#39;Symfony\\\\Bundle\\\\SwiftmailerBundle\\\\EventListener\\\\EmailSenderListener&#39;; private $called = TRUE; private $stoppedPropagation = FALSE; private $stopwatch = class Symfony\\Component\\Stopwatch\\Stopwatch { ... }; private $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; private $pretty = &#39;Symfony\\\\Bundle\\\\SwiftmailerBundle\\\\EventListener\\\\EmailSenderListener::onTerminate&#39;; private $stub = class Symfony\\Component\\VarDumper\\Caster\\ClassStub { ... }; private $priority = 0 }, 1 =&gt; class Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener { private $listener = [...]; private $optimizedListener = class Closure { virtual $closure = &quot;$this-&gt;onKernelTerminate&quot;, ... }; private $name = &#39;Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\ProfilerListener&#39;; private $called = TRUE; private $stoppedPropagation = FALSE; private $stopwatch = class Symfony\\Component\\Stopwatch\\Stopwatch { ... }; private $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; private $pretty = &#39;Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\ProfilerListener::onKernelTerminate&#39;; private $stub = class Symfony\\Component\\VarDumper\\Caster\\ClassStub { ... }; private $priority = -1024 }]</span>, <span>$eventName = </span><span>&#39;kernel.terminate&#39;</span>, <span>$event = </span><span>class Symfony\\Component\\HttpKernel\\Event\\TerminateEvent { private ${Symfony\\Component\\HttpKernel\\Event\\PostResponseEvent}response = class Symfony\\Component\\HttpFoundation\\Response { public $headers = class Symfony\\Component\\HttpFoundation\\ResponseHeaderBag { ... }; protected $content = &#39;&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;\\n&lt;html lang=&quot;en&quot;&gt;\\n    &lt;head&gt;\\n        &lt;link rel=&quot;stylesheet&quot; href=&quot;/bundles/uvdesksupportcenter/css/knowledgebase.css&quot;&gt;\\n        &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.7.14/css/bootstrap-datetimepicker.min.css&quot;&gt;\\n        \\n        &lt;script src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js&quot;&gt;&lt;/script&gt;\\n        &lt;script src=&quot;htt&#39;; protected $version = &#39;1.1&#39;; protected $statusCode = 200; protected $statusText = &#39;OK&#39;; protected $charset = &#39;UTF-8&#39; }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}kernel = class Symfony\\Component\\HttpKernel\\HttpKernel { protected $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; protected $resolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableControllerResolver { ... }; protected $requestStack = class Symfony\\Component\\HttpFoundation\\RequestStack { ... }; private $argumentResolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableArgumentResolver { ... } }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}request = class Symfony\\Component\\HttpFoundation\\Request { public $attributes = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $request = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $query = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $server = class Symfony\\Component\\HttpFoundation\\ServerBag { ... }; public $files = class Symfony\\Component\\HttpFoundation\\FileBag { ... }; public $cookies = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $headers = class Symfony\\Component\\HttpFoundation\\HeaderBag { ... }; protected $content = &#39;&#39;; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = &#39;/en/&#39;; protected $requestUri = &#39;/en/&#39;; protected $baseUrl = &#39;&#39;; protected $basePath = &#39;&#39;; protected $method = &#39;GET&#39;; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { ... }; protected $locale = &#39;en&#39;; protected $defaultLocale = &#39;en&#39;; private $preferredFormat = NULL; private $isHostValid = TRUE; private $isForwardedValid = TRUE; private $isSafeContentPreferred = NULL }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}requestType = 1; private ${Symfony\\Component\\EventDispatcher\\Event}propagationStopped = FALSE }</span> )</td><td title='/var/www/uvdesk/vendor/symfony/event-dispatcher/EventDispatcher.php' bgcolor='#eeeeec'>.../EventDispatcher.php<b>:</b>239</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>8</td><td bgcolor='#eeeeec' align='center'>0.1697</td><td bgcolor='#eeeeec' align='right'>6274792</td><td bgcolor='#eeeeec'>Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener->__invoke( <span>$event = </span><span>class Symfony\\Component\\HttpKernel\\Event\\TerminateEvent { private ${Symfony\\Component\\HttpKernel\\Event\\PostResponseEvent}response = class Symfony\\Component\\HttpFoundation\\Response { public $headers = class Symfony\\Component\\HttpFoundation\\ResponseHeaderBag { ... }; protected $content = &#39;&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;\\n&lt;html lang=&quot;en&quot;&gt;\\n    &lt;head&gt;\\n        &lt;link rel=&quot;stylesheet&quot; href=&quot;/bundles/uvdesksupportcenter/css/knowledgebase.css&quot;&gt;\\n        &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.7.14/css/bootstrap-datetimepicker.min.css&quot;&gt;\\n        \\n        &lt;script src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js&quot;&gt;&lt;/script&gt;\\n        &lt;script src=&quot;htt&#39;; protected $version = &#39;1.1&#39;; protected $statusCode = 200; protected $statusText = &#39;OK&#39;; protected $charset = &#39;UTF-8&#39; }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}kernel = class Symfony\\Component\\HttpKernel\\HttpKernel { protected $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; protected $resolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableControllerResolver { ... }; protected $requestStack = class Symfony\\Component\\HttpFoundation\\RequestStack { ... }; private $argumentResolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableArgumentResolver { ... } }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}request = class Symfony\\Component\\HttpFoundation\\Request { public $attributes = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $request = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $query = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $server = class Symfony\\Component\\HttpFoundation\\ServerBag { ... }; public $files = class Symfony\\Component\\HttpFoundation\\FileBag { ... }; public $cookies = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $headers = class Symfony\\Component\\HttpFoundation\\HeaderBag { ... }; protected $content = &#39;&#39;; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = &#39;/en/&#39;; protected $requestUri = &#39;/en/&#39;; protected $baseUrl = &#39;&#39;; protected $basePath = &#39;&#39;; protected $method = &#39;GET&#39;; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { ... }; protected $locale = &#39;en&#39;; protected $defaultLocale = &#39;en&#39;; private $preferredFormat = NULL; private $isHostValid = TRUE; private $isForwardedValid = TRUE; private $isSafeContentPreferred = NULL }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}requestType = 1; private ${Symfony\\Component\\EventDispatcher\\Event}propagationStopped = FALSE }</span>, <span>$eventName = </span><span>&#39;kernel.terminate&#39;</span>, <span>$dispatcher = </span><span>class Symfony\\Component\\EventDispatcher\\EventDispatcher { private $listeners = [&#39;kernel.controller&#39; =&gt; [...], &#39;kernel.request&#39; =&gt; [...], &#39;console.command&#39; =&gt; [...], &#39;console.terminate&#39; =&gt; [...], &#39;uvdesk.automation.prepared_response.execute&#39; =&gt; [...], &#39;uvdesk.automation.workflow.execute&#39; =&gt; [...], &#39;kernel.controller_arguments&#39; =&gt; [...], &#39;kernel.exception&#39; =&gt; [...], &#39;kernel.response&#39; =&gt; [...], &#39;kernel.finish_request&#39; =&gt; [...], &#39;console.error&#39; =&gt; [...], &#39;kernel.terminate&#39; =&gt; [...], &#39;knp_pager.before&#39; =&gt; [...], &#39;knp_pager.pagination&#39; =&gt; [...], &#39;kernel.view&#39; =&gt; [...], &#39;debug.security.authorization.vote&#39; =&gt; [...]]; private $sorted = [&#39;kernel.controller&#39; =&gt; [...], &#39;kernel.request&#39; =&gt; [...], &#39;console.command&#39; =&gt; [...], &#39;console.terminate&#39; =&gt; [...], &#39;uvdesk.automation.prepared_response.execute&#39; =&gt; [...], &#39;uvdesk.automation.workflow.execute&#39; =&gt; [...], &#39;kernel.controller_arguments&#39; =&gt; [...], &#39;kernel.exception&#39; =&gt; [...], &#39;kernel.response&#39; =&gt; [...], &#39;kernel.finish_request&#39; =&gt; [...], &#39;console.error&#39; =&gt; [...], &#39;kernel.terminate&#39; =&gt; [...], &#39;knp_pager.before&#39; =&gt; [...], &#39;knp_pager.pagination&#39; =&gt; [...], &#39;kernel.view&#39; =&gt; [...], &#39;debug.security.authorization.vote&#39; =&gt; [...]]; private $optimized = [&#39;kernel.terminate&#39; =&gt; [...]] }</span> )</td><td title='/var/www/uvdesk/vendor/symfony/event-dispatcher/EventDispatcher.php' bgcolor='#eeeeec'>.../EventDispatcher.php<b>:</b>264</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>9</td><td bgcolor='#eeeeec' align='center'>0.1697</td><td bgcolor='#eeeeec' align='right'>6274792</td><td bgcolor='#eeeeec'>Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener->onKernelTerminate( <span>$event = </span><span>class Symfony\\Component\\HttpKernel\\Event\\TerminateEvent { private ${Symfony\\Component\\HttpKernel\\Event\\PostResponseEvent}response = class Symfony\\Component\\HttpFoundation\\Response { public $headers = class Symfony\\Component\\HttpFoundation\\ResponseHeaderBag { ... }; protected $content = &#39;&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;\\n&lt;html lang=&quot;en&quot;&gt;\\n    &lt;head&gt;\\n        &lt;link rel=&quot;stylesheet&quot; href=&quot;/bundles/uvdesksupportcenter/css/knowledgebase.css&quot;&gt;\\n        &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.7.14/css/bootstrap-datetimepicker.min.css&quot;&gt;\\n        \\n        &lt;script src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js&quot;&gt;&lt;/script&gt;\\n        &lt;script src=&quot;htt&#39;; protected $version = &#39;1.1&#39;; protected $statusCode = 200; protected $statusText = &#39;OK&#39;; protected $charset = &#39;UTF-8&#39; }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}kernel = class Symfony\\Component\\HttpKernel\\HttpKernel { protected $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; protected $resolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableControllerResolver { ... }; protected $requestStack = class Symfony\\Component\\HttpFoundation\\RequestStack { ... }; private $argumentResolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableArgumentResolver { ... } }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}request = class Symfony\\Component\\HttpFoundation\\Request { public $attributes = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $request = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $query = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $server = class Symfony\\Component\\HttpFoundation\\ServerBag { ... }; public $files = class Symfony\\Component\\HttpFoundation\\FileBag { ... }; public $cookies = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $headers = class Symfony\\Component\\HttpFoundation\\HeaderBag { ... }; protected $content = &#39;&#39;; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = &#39;/en/&#39;; protected $requestUri = &#39;/en/&#39;; protected $baseUrl = &#39;&#39;; protected $basePath = &#39;&#39;; protected $method = &#39;GET&#39;; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { ... }; protected $locale = &#39;en&#39;; protected $defaultLocale = &#39;en&#39;; private $preferredFormat = NULL; private $isHostValid = TRUE; private $isForwardedValid = TRUE; private $isSafeContentPreferred = NULL }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}requestType = 1; private ${Symfony\\Component\\EventDispatcher\\Event}propagationStopped = FALSE }</span>, <span>&#39;kernel.terminate&#39;</span>, <span>class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { protected $logger = class Symfony\\Bridge\\Monolog\\Logger { protected $name = &#39;event&#39;; protected $handlers = [...]; protected $processors = [...]; protected $microsecondTimestamps = TRUE; protected $timezone = class DateTimeZone { ... }; protected $exceptionHandler = NULL }; protected $stopwatch = class Symfony\\Component\\Stopwatch\\Stopwatch { private $morePrecision = TRUE; private $sections = [...]; private $activeSections = [...] }; private ${Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher}callStack = class SplObjectStorage { private $storage = [...] }; private ${Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher}dispatcher = class Symfony\\Component\\EventDispatcher\\EventDispatcher { private $listeners = [...]; private $sorted = [...]; private $optimized = [...] }; private ${Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher}wrappedListeners = [&#39;kernel.terminate&#39; =&gt; [...]]; private ${Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher}orphanedEvents = [&#39;0000000036e6261e0000000073eb5881&#39; =&gt; [...]]; private ${Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher}requestStack = class Symfony\\Component\\HttpFoundation\\RequestStack { private $requests = [...] }; private ${Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher}currentRequestHash = &#39;&#39; }</span> )</td><td title='/var/www/uvdesk/vendor/symfony/event-dispatcher/Debug/WrappedListener.php' bgcolor='#eeeeec'>.../WrappedListener.php<b>:</b>126</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>10</td><td bgcolor='#eeeeec' align='center'>0.1697</td><td bgcolor='#eeeeec' align='right'>6274904</td><td bgcolor='#eeeeec'>Symfony\\Component\\HttpKernel\\Profiler\\Profiler->saveProfile( <span>$profile = </span><span>class Symfony\\Component\\HttpKernel\\Profiler\\Profile { private $token = &#39;428cdb&#39;; private $collectors = [&#39;request&#39; =&gt; class Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector { ... }, &#39;time&#39; =&gt; class Symfony\\Component\\HttpKernel\\DataCollector\\TimeDataCollector { ... }, &#39;memory&#39; =&gt; class Symfony\\Component\\HttpKernel\\DataCollector\\MemoryDataCollector { ... }, &#39;validator&#39; =&gt; class Symfony\\Component\\Validator\\DataCollector\\ValidatorDataCollector { ... }, &#39;ajax&#39; =&gt; class Symfony\\Component\\HttpKernel\\DataCollector\\AjaxDataCollector { ... }, &#39;form&#39; =&gt; class Symfony\\Component\\Form\\Extension\\DataCollector\\FormDataCollector { ... }, &#39;exception&#39; =&gt; class Symfony\\Component\\HttpKernel\\DataCollector\\ExceptionDataCollector { ... }, &#39;logger&#39; =&gt; class Symfony\\Component\\HttpKernel\\DataCollector\\LoggerDataCollector { ... }, &#39;events&#39; =&gt; class Symfony\\Component\\HttpKernel\\DataCollector\\EventDataCollector { ... }, &#39;router&#39; =&gt; class Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector { ... }, &#39;cache&#39; =&gt; class Symfony\\Component\\Cache\\DataCollector\\CacheDataCollector { ... }, &#39;translation&#39; =&gt; class Symfony\\Component\\Translation\\DataCollector\\TranslationDataCollector { ... }, &#39;security&#39; =&gt; class Symfony\\Bundle\\SecurityBundle\\DataCollector\\SecurityDataCollector { ... }, &#39;twig&#39; =&gt; class Symfony\\Bridge\\Twig\\DataCollector\\TwigDataCollector { ... }, &#39;http_client&#39; =&gt; class Symfony\\Component\\HttpClient\\DataCollector\\HttpClientDataCollector { ... }, &#39;db&#39; =&gt; class Doctrine\\Bundle\\DoctrineBundle\\DataCollector\\DoctrineDataCollector { ... }, &#39;swiftmailer&#39; =&gt; class Symfony\\Bundle\\SwiftmailerBundle\\DataCollector\\MessageDataCollector { ... }, &#39;dump&#39; =&gt; class Symfony\\Component\\HttpKernel\\DataCollector\\DumpDataCollector { ... }, &#39;config&#39; =&gt; class Symfony\\Component\\HttpKernel\\DataCollector\\ConfigDataCollector { ... }]; private $ip = &#39;150.136.50.32&#39;; private $method = &#39;GET&#39;; private $url = &#39;http://tickets.spartanit.pro/en/&#39;; private $time = 1734787692; private $statusCode = 200; private $parent = NULL; private $children = [] }</span> )</td><td title='/var/www/uvdesk/vendor/symfony/http-kernel/EventListener/ProfilerListener.php' bgcolor='#eeeeec'>.../ProfilerListener.php<b>:</b>112</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>11</td><td bgcolor='#eeeeec' align='center'>0.2553</td><td bgcolor='#eeeeec' align='right'>8979328</td><td bgcolor='#eeeeec'>Symfony\\Component\\HttpKernel\\Profiler\\FileProfilerStorage->write( <span>$profile = </span><span>class Symfony\\Component\\HttpKernel\\Profiler\\Profile { private $token = &#39;428cdb&#39;; private $collectors = [&#39;request&#39; =&gt; class Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector { ... }, &#39;time&#39; =&gt; class Symfony\\Component\\HttpKernel\\DataCollector\\TimeDataCollector { ... }, &#39;memory&#39; =&gt; class Symfony\\Component\\HttpKernel\\DataCollector\\MemoryDataCollector { ... }, &#39;validator&#39; =&gt; class Symfony\\Component\\Validator\\DataCollector\\ValidatorDataCollector { ... }, &#39;ajax&#39; =&gt; class Symfony\\Component\\HttpKernel\\DataCollector\\AjaxDataCollector { ... }, &#39;form&#39; =&gt; class Symfony\\Component\\Form\\Extension\\DataCollector\\FormDataCollector { ... }, &#39;exception&#39; =&gt; class Symfony\\Component\\HttpKernel\\DataCollector\\ExceptionDataCollector { ... }, &#39;logger&#39; =&gt; class Symfony\\Component\\HttpKernel\\DataCollector\\LoggerDataCollector { ... }, &#39;events&#39; =&gt; class Symfony\\Component\\HttpKernel\\DataCollector\\EventDataCollector { ... }, &#39;router&#39; =&gt; class Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector { ... }, &#39;cache&#39; =&gt; class Symfony\\Component\\Cache\\DataCollector\\CacheDataCollector { ... }, &#39;translation&#39; =&gt; class Symfony\\Component\\Translation\\DataCollector\\TranslationDataCollector { ... }, &#39;security&#39; =&gt; class Symfony\\Bundle\\SecurityBundle\\DataCollector\\SecurityDataCollector { ... }, &#39;twig&#39; =&gt; class Symfony\\Bridge\\Twig\\DataCollector\\TwigDataCollector { ... }, &#39;http_client&#39; =&gt; class Symfony\\Component\\HttpClient\\DataCollector\\HttpClientDataCollector { ... }, &#39;db&#39; =&gt; class Doctrine\\Bundle\\DoctrineBundle\\DataCollector\\DoctrineDataCollector { ... }, &#39;swiftmailer&#39; =&gt; class Symfony\\Bundle\\SwiftmailerBundle\\DataCollector\\MessageDataCollector { ... }, &#39;dump&#39; =&gt; class Symfony\\Component\\HttpKernel\\DataCollector\\DumpDataCollector { ... }, &#39;config&#39; =&gt; class Symfony\\Component\\HttpKernel\\DataCollector\\ConfigDataCollector { ... }]; private $ip = &#39;150.136.50.32&#39;; private $method = &#39;GET&#39;; private $url = &#39;http://tickets.spartanit.pro/en/&#39;; private $time = 1734787692; private $statusCode = 200; private $parent = NULL; private $children = [] }</span> )</td><td title='/var/www/uvdesk/vendor/symfony/http-kernel/Profiler/Profiler.php' bgcolor='#eeeeec'>.../Profiler.php<b>:</b>104</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>12</td><td bgcolor='#eeeeec' align='center'>0.2669</td><td bgcolor='#eeeeec' align='right'>10367496</td><td bgcolor='#eeeeec'><a href='http://www.php.net/function.file-put-contents' target='_new'>file_put_contents</a>( <span>$filename = </span><span>&#39;compress.zlib:///var/www/uvdesk/var/cache/dev/profiler/db/8c/428cdb&#39;</span>, <span>$data = </span><span>&#39;a:9:{s:5:&quot;token&quot;;s:6:&quot;428cdb&quot;;s:6:&quot;parent&quot;;N;s:8:&quot;children&quot;;a:0:{}s:4:&quot;data&quot;;a:19:{s:7:&quot;request&quot;;O:63:&quot;Symfony\\\\Component\\\\HttpKernel\\\\DataCollector\\\\RequestDataCollector&quot;:1:{s:7:&quot;\\000*\\000data&quot;;O:39:&quot;Symfony\\\\Component\\\\VarDumper\\\\Cloner\\\\Data&quot;:7:{s:45:&quot;\\000Symfony\\\\Component\\\\VarDumper\\\\Cloner\\\\Data\\000data&quot;;a:13:{i:0;a:1:{i:0;a:1:{i:1;i:1;}}i:1;a:25:{s:6:&quot;method&quot;;s:3:&quot;GET&quot;;s:6:&quot;format&quot;;s:4:&quot;html&quot;;s:7:&quot;content&quot;;s:0:&quot;&quot;;s:12:&quot;content_type&quot;;s:24:&quot;text/html; charset=UTF-8&quot;;s:11:&quot;status_text&quot;;s:2:&quot;OK&quot;;s:11:&quot;st&#39;</span>, <span>$flags = </span><span>0</span>, <span>$context = </span><span>resource(73) of type (stream-context)</span> )</td><td title='/var/www/uvdesk/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php' bgcolor='#eeeeec'>.../FileProfilerStorage.php<b>:</b>175</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>13</td><td bgcolor='#eeeeec' align='center'>0.2702</td><td bgcolor='#eeeeec' align='right'>10369792</td><td bgcolor='#eeeeec'>Symfony\\Component\\ErrorHandler\\ErrorHandler->handleError( <span>$type = </span><span>2</span>, <span>$message = </span><span>&#39;file_put_contents(): Only 417792 of 718842 bytes written, possibly out of free disk space&#39;</span>, <span>$file = </span><span>&#39;/var/www/uvdesk/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php&#39;</span>, <span>$line = </span><span>175</span>, <span>[&#39;profile&#39; =&gt; class Symfony\\Component\\HttpKernel\\Profiler\\Profile { private $token = &#39;428cdb&#39;; private $collectors = [...]; private $ip = &#39;150.136.50.32&#39;; private $method = &#39;GET&#39;; private $url = &#39;http://tickets.spartanit.pro/en/&#39;; private $time = 1734787692; private $statusCode = 200; private $parent = NULL; private $children = [...] }, &#39;file&#39; =&gt; &#39;compress.zlib:///var/www/uvdesk/var/cache/dev/profiler/db/8c/428cdb&#39;, &#39;profileIndexed&#39; =&gt; FALSE, &#39;dir&#39; =&gt; &#39;/var/www/uvdesk/var/cache/dev/profiler/db/8c&#39;, &#39;profileToken&#39; =&gt; &#39;428cdb&#39;, &#39;parentToken&#39; =&gt; NULL, &#39;childrenToken&#39; =&gt; [], &#39;data&#39; =&gt; [&#39;token&#39; =&gt; &#39;428cdb&#39;, &#39;parent&#39; =&gt; NULL, &#39;children&#39; =&gt; [...], &#39;data&#39; =&gt; [...], &#39;ip&#39; =&gt; &#39;150.136.50.32&#39;, &#39;method&#39; =&gt; &#39;GET&#39;, &#39;url&#39; =&gt; &#39;http://tickets.spartanit.pro/en/&#39;, &#39;time&#39; =&gt; 1734787692, &#39;status_code&#39; =&gt; 200], &#39;context&#39; =&gt; resource(73) of type (stream-context)]</span> )</td><td title='/var/www/uvdesk/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php' bgcolor='#eeeeec'>.../FileProfilerStorage.php<b>:</b>175</td></tr>\n"
    }
}
CRITICAL 13:28:12 request Uncaught PHP Exception ErrorException: "Warning: file_put_contents(): Only 417792 of 718842 bytes written, possibly out of free disk space" at /var/www/uvdesk/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php line 175
{
    "exception": {
        "xdebug_message": "<tr><th align='left' bgcolor='#f57900' colspan=\"5\"><span style='background-color: #cc0000; color: #fce94f; font-size: x-large;'>( ! )</span> ErrorException: Warning: file_put_contents(): Only 417792 of 718842 bytes written, possibly out of free disk space in /var/www/uvdesk/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php on line <i>175</i></th></tr>\n<tr><th align='left' bgcolor='#e9b96e' colspan='5'>Call Stack</th></tr>\n<tr><th align='center' bgcolor='#eeeeec'>#</th><th align='left' bgcolor='#eeeeec'>Time</th><th align='left' bgcolor='#eeeeec'>Memory</th><th align='left' bgcolor='#eeeeec'>Function</th><th align='left' bgcolor='#eeeeec'>Location</th></tr>\n<tr><td bgcolor='#eeeeec' align='center'>1</td><td bgcolor='#eeeeec' align='center'>0.0001</td><td bgcolor='#eeeeec' align='right'>403200</td><td bgcolor='#eeeeec'>{main}(  )</td><td title='/var/www/uvdesk/public/index.php' bgcolor='#eeeeec'>.../index.php<b>:</b>0</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>2</td><td bgcolor='#eeeeec' align='center'>0.1695</td><td bgcolor='#eeeeec' align='right'>6270400</td><td bgcolor='#eeeeec'>Symfony\\Component\\HttpKernel\\Kernel->terminate( <span>$request = </span><span>class Symfony\\Component\\HttpFoundation\\Request { public $attributes = class Symfony\\Component\\HttpFoundation\\ParameterBag { protected $parameters = [...] }; public $request = class Symfony\\Component\\HttpFoundation\\InputBag { protected $parameters = [...] }; public $query = class Symfony\\Component\\HttpFoundation\\InputBag { protected $parameters = [...] }; public $server = class Symfony\\Component\\HttpFoundation\\ServerBag { protected $parameters = [...] }; public $files = class Symfony\\Component\\HttpFoundation\\FileBag { protected $parameters = [...] }; public $cookies = class Symfony\\Component\\HttpFoundation\\InputBag { protected $parameters = [...] }; public $headers = class Symfony\\Component\\HttpFoundation\\HeaderBag { protected $headers = [...]; protected $cacheControl = [...] }; protected $content = &#39;&#39;; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = &#39;/en/&#39;; protected $requestUri = &#39;/en/&#39;; protected $baseUrl = &#39;&#39;; protected $basePath = &#39;&#39;; protected $method = &#39;GET&#39;; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { protected $storage = class Symfony\\Component\\HttpFoundation\\Session\\Storage\\NativeSessionStorage { ... }; private $flashName = &#39;flashes&#39;; private $attributeName = &#39;attributes&#39;; private $data = [...]; private $usageIndex = 11; private $usageReporter = NULL }; protected $locale = &#39;en&#39;; protected $defaultLocale = &#39;en&#39;; private $preferredFormat = NULL; private $isHostValid = TRUE; private $isForwardedValid = TRUE; private $isSafeContentPreferred = NULL }</span>, <span>$response = </span><span>class Symfony\\Component\\HttpFoundation\\Response { public $headers = class Symfony\\Component\\HttpFoundation\\ResponseHeaderBag { protected $computedCacheControl = [...]; protected $cookies = [...]; protected $headerNames = [...]; protected $headers = [...]; protected $cacheControl = [...] }; protected $content = &#39;&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;\\n&lt;html lang=&quot;en&quot;&gt;\\n    &lt;head&gt;\\n        &lt;link rel=&quot;stylesheet&quot; href=&quot;/bundles/uvdesksupportcenter/css/knowledgebase.css&quot;&gt;\\n        &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.7.14/css/bootstrap-datetimepicker.min.css&quot;&gt;\\n        \\n        &lt;script src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js&quot;&gt;&lt;/script&gt;\\n        &lt;script src=&quot;htt&#39;; protected $version = &#39;1.1&#39;; protected $statusCode = 200; protected $statusText = &#39;OK&#39;; protected $charset = &#39;UTF-8&#39; }</span> )</td><td title='/var/www/uvdesk/public/index.php' bgcolor='#eeeeec'>.../index.php<b>:</b>27</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>3</td><td bgcolor='#eeeeec' align='center'>0.1695</td><td bgcolor='#eeeeec' align='right'>6270400</td><td bgcolor='#eeeeec'>Symfony\\Component\\HttpKernel\\HttpKernel->terminate( <span>$request = </span><span>class Symfony\\Component\\HttpFoundation\\Request { public $attributes = class Symfony\\Component\\HttpFoundation\\ParameterBag { protected $parameters = [...] }; public $request = class Symfony\\Component\\HttpFoundation\\InputBag { protected $parameters = [...] }; public $query = class Symfony\\Component\\HttpFoundation\\InputBag { protected $parameters = [...] }; public $server = class Symfony\\Component\\HttpFoundation\\ServerBag { protected $parameters = [...] }; public $files = class Symfony\\Component\\HttpFoundation\\FileBag { protected $parameters = [...] }; public $cookies = class Symfony\\Component\\HttpFoundation\\InputBag { protected $parameters = [...] }; public $headers = class Symfony\\Component\\HttpFoundation\\HeaderBag { protected $headers = [...]; protected $cacheControl = [...] }; protected $content = &#39;&#39;; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = &#39;/en/&#39;; protected $requestUri = &#39;/en/&#39;; protected $baseUrl = &#39;&#39;; protected $basePath = &#39;&#39;; protected $method = &#39;GET&#39;; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { protected $storage = class Symfony\\Component\\HttpFoundation\\Session\\Storage\\NativeSessionStorage { ... }; private $flashName = &#39;flashes&#39;; private $attributeName = &#39;attributes&#39;; private $data = [...]; private $usageIndex = 11; private $usageReporter = NULL }; protected $locale = &#39;en&#39;; protected $defaultLocale = &#39;en&#39;; private $preferredFormat = NULL; private $isHostValid = TRUE; private $isForwardedValid = TRUE; private $isSafeContentPreferred = NULL }</span>, <span>$response = </span><span>class Symfony\\Component\\HttpFoundation\\Response { public $headers = class Symfony\\Component\\HttpFoundation\\ResponseHeaderBag { protected $computedCacheControl = [...]; protected $cookies = [...]; protected $headerNames = [...]; protected $headers = [...]; protected $cacheControl = [...] }; protected $content = &#39;&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;\\n&lt;html lang=&quot;en&quot;&gt;\\n    &lt;head&gt;\\n        &lt;link rel=&quot;stylesheet&quot; href=&quot;/bundles/uvdesksupportcenter/css/knowledgebase.css&quot;&gt;\\n        &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.7.14/css/bootstrap-datetimepicker.min.css&quot;&gt;\\n        \\n        &lt;script src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js&quot;&gt;&lt;/script&gt;\\n        &lt;script src=&quot;htt&#39;; protected $version = &#39;1.1&#39;; protected $statusCode = 200; protected $statusText = &#39;OK&#39;; protected $charset = &#39;UTF-8&#39; }</span> )</td><td title='/var/www/uvdesk/vendor/symfony/http-kernel/Kernel.php' bgcolor='#eeeeec'>.../Kernel.php<b>:</b>166</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>4</td><td bgcolor='#eeeeec' align='center'>0.1695</td><td bgcolor='#eeeeec' align='right'>6270528</td><td bgcolor='#eeeeec'>Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher->dispatch( <span>$event = </span><span>class Symfony\\Component\\HttpKernel\\Event\\TerminateEvent { private ${Symfony\\Component\\HttpKernel\\Event\\PostResponseEvent}response = class Symfony\\Component\\HttpFoundation\\Response { public $headers = class Symfony\\Component\\HttpFoundation\\ResponseHeaderBag { ... }; protected $content = &#39;&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;\\n&lt;html lang=&quot;en&quot;&gt;\\n    &lt;head&gt;\\n        &lt;link rel=&quot;stylesheet&quot; href=&quot;/bundles/uvdesksupportcenter/css/knowledgebase.css&quot;&gt;\\n        &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.7.14/css/bootstrap-datetimepicker.min.css&quot;&gt;\\n        \\n        &lt;script src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js&quot;&gt;&lt;/script&gt;\\n        &lt;script src=&quot;htt&#39;; protected $version = &#39;1.1&#39;; protected $statusCode = 200; protected $statusText = &#39;OK&#39;; protected $charset = &#39;UTF-8&#39; }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}kernel = class Symfony\\Component\\HttpKernel\\HttpKernel { protected $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; protected $resolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableControllerResolver { ... }; protected $requestStack = class Symfony\\Component\\HttpFoundation\\RequestStack { ... }; private $argumentResolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableArgumentResolver { ... } }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}request = class Symfony\\Component\\HttpFoundation\\Request { public $attributes = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $request = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $query = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $server = class Symfony\\Component\\HttpFoundation\\ServerBag { ... }; public $files = class Symfony\\Component\\HttpFoundation\\FileBag { ... }; public $cookies = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $headers = class Symfony\\Component\\HttpFoundation\\HeaderBag { ... }; protected $content = &#39;&#39;; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = &#39;/en/&#39;; protected $requestUri = &#39;/en/&#39;; protected $baseUrl = &#39;&#39;; protected $basePath = &#39;&#39;; protected $method = &#39;GET&#39;; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { ... }; protected $locale = &#39;en&#39;; protected $defaultLocale = &#39;en&#39;; private $preferredFormat = NULL; private $isHostValid = TRUE; private $isForwardedValid = TRUE; private $isSafeContentPreferred = NULL }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}requestType = 1; private ${Symfony\\Component\\EventDispatcher\\Event}propagationStopped = FALSE }</span>, <span>&#39;kernel.terminate&#39;</span> )</td><td title='/var/www/uvdesk/vendor/symfony/http-kernel/HttpKernel.php' bgcolor='#eeeeec'>.../HttpKernel.php<b>:</b>100</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>5</td><td bgcolor='#eeeeec' align='center'>0.1696</td><td bgcolor='#eeeeec' align='right'>6273320</td><td bgcolor='#eeeeec'>Symfony\\Component\\EventDispatcher\\EventDispatcher->dispatch( <span>$event = </span><span>class Symfony\\Component\\HttpKernel\\Event\\TerminateEvent { private ${Symfony\\Component\\HttpKernel\\Event\\PostResponseEvent}response = class Symfony\\Component\\HttpFoundation\\Response { public $headers = class Symfony\\Component\\HttpFoundation\\ResponseHeaderBag { ... }; protected $content = &#39;&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;\\n&lt;html lang=&quot;en&quot;&gt;\\n    &lt;head&gt;\\n        &lt;link rel=&quot;stylesheet&quot; href=&quot;/bundles/uvdesksupportcenter/css/knowledgebase.css&quot;&gt;\\n        &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.7.14/css/bootstrap-datetimepicker.min.css&quot;&gt;\\n        \\n        &lt;script src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js&quot;&gt;&lt;/script&gt;\\n        &lt;script src=&quot;htt&#39;; protected $version = &#39;1.1&#39;; protected $statusCode = 200; protected $statusText = &#39;OK&#39;; protected $charset = &#39;UTF-8&#39; }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}kernel = class Symfony\\Component\\HttpKernel\\HttpKernel { protected $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; protected $resolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableControllerResolver { ... }; protected $requestStack = class Symfony\\Component\\HttpFoundation\\RequestStack { ... }; private $argumentResolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableArgumentResolver { ... } }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}request = class Symfony\\Component\\HttpFoundation\\Request { public $attributes = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $request = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $query = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $server = class Symfony\\Component\\HttpFoundation\\ServerBag { ... }; public $files = class Symfony\\Component\\HttpFoundation\\FileBag { ... }; public $cookies = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $headers = class Symfony\\Component\\HttpFoundation\\HeaderBag { ... }; protected $content = &#39;&#39;; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = &#39;/en/&#39;; protected $requestUri = &#39;/en/&#39;; protected $baseUrl = &#39;&#39;; protected $basePath = &#39;&#39;; protected $method = &#39;GET&#39;; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { ... }; protected $locale = &#39;en&#39;; protected $defaultLocale = &#39;en&#39;; private $preferredFormat = NULL; private $isHostValid = TRUE; private $isForwardedValid = TRUE; private $isSafeContentPreferred = NULL }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}requestType = 1; private ${Symfony\\Component\\EventDispatcher\\Event}propagationStopped = FALSE }</span>, <span>&#39;kernel.terminate&#39;</span> )</td><td title='/var/www/uvdesk/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php' bgcolor='#eeeeec'>.../TraceableEventDispatcher.php<b>:</b>168</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>6</td><td bgcolor='#eeeeec' align='center'>0.1696</td><td bgcolor='#eeeeec' align='right'>6273792</td><td bgcolor='#eeeeec'>Symfony\\Component\\EventDispatcher\\EventDispatcher->callListeners( <span>$listeners = </span><span>[0 =&gt; class Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener { private $listener = [...]; private $optimizedListener = class Closure { virtual $closure = &quot;$this-&gt;onTerminate&quot;, ... }; private $name = &#39;Symfony\\\\Bundle\\\\SwiftmailerBundle\\\\EventListener\\\\EmailSenderListener&#39;; private $called = TRUE; private $stoppedPropagation = FALSE; private $stopwatch = class Symfony\\Component\\Stopwatch\\Stopwatch { ... }; private $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; private $pretty = &#39;Symfony\\\\Bundle\\\\SwiftmailerBundle\\\\EventListener\\\\EmailSenderListener::onTerminate&#39;; private $stub = class Symfony\\Component\\VarDumper\\Caster\\ClassStub { ... }; private $priority = 0 }, 1 =&gt; class Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener { private $listener = [...]; private $optimizedListener = class Closure { virtual $closure = &quot;$this-&gt;onKernelTerminate&quot;, ... }; private $name = &#39;Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\ProfilerListener&#39;; private $called = TRUE; private $stoppedPropagation = FALSE; private $stopwatch = class Symfony\\Component\\Stopwatch\\Stopwatch { ... }; private $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; private $pretty = &#39;Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\ProfilerListener::onKernelTerminate&#39;; private $stub = class Symfony\\Component\\VarDumper\\Caster\\ClassStub { ... }; private $priority = -1024 }]</span>, <span>$eventName = </span><span>&#39;kernel.terminate&#39;</span>, <span>$event = </span><span>class Symfony\\Component\\HttpKernel\\Event\\TerminateEvent { private ${Symfony\\Component\\HttpKernel\\Event\\PostResponseEvent}response = class Symfony\\Component\\HttpFoundation\\Response { public $headers = class Symfony\\Component\\HttpFoundation\\ResponseHeaderBag { ... }; protected $content = &#39;&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;\\n&lt;html lang=&quot;en&quot;&gt;\\n    &lt;head&gt;\\n        &lt;link rel=&quot;stylesheet&quot; href=&quot;/bundles/uvdesksupportcenter/css/knowledgebase.css&quot;&gt;\\n        &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.7.14/css/bootstrap-datetimepicker.min.css&quot;&gt;\\n        \\n        &lt;script src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js&quot;&gt;&lt;/script&gt;\\n        &lt;script src=&quot;htt&#39;; protected $version = &#39;1.1&#39;; protected $statusCode = 200; protected $statusText = &#39;OK&#39;; protected $charset = &#39;UTF-8&#39; }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}kernel = class Symfony\\Component\\HttpKernel\\HttpKernel { protected $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; protected $resolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableControllerResolver { ... }; protected $requestStack = class Symfony\\Component\\HttpFoundation\\RequestStack { ... }; private $argumentResolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableArgumentResolver { ... } }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}request = class Symfony\\Component\\HttpFoundation\\Request { public $attributes = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $request = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $query = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $server = class Symfony\\Component\\HttpFoundation\\ServerBag { ... }; public $files = class Symfony\\Component\\HttpFoundation\\FileBag { ... }; public $cookies = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $headers = class Symfony\\Component\\HttpFoundation\\HeaderBag { ... }; protected $content = &#39;&#39;; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = &#39;/en/&#39;; protected $requestUri = &#39;/en/&#39;; protected $baseUrl = &#39;&#39;; protected $basePath = &#39;&#39;; protected $method = &#39;GET&#39;; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { ... }; protected $locale = &#39;en&#39;; protected $defaultLocale = &#39;en&#39;; private $preferredFormat = NULL; private $isHostValid = TRUE; private $isForwardedValid = TRUE; private $isSafeContentPreferred = NULL }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}requestType = 1; private ${Symfony\\Component\\EventDispatcher\\Event}propagationStopped = FALSE }</span> )</td><td title='/var/www/uvdesk/vendor/symfony/event-dispatcher/EventDispatcher.php' bgcolor='#eeeeec'>.../EventDispatcher.php<b>:</b>73</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>7</td><td bgcolor='#eeeeec' align='center'>0.1696</td><td bgcolor='#eeeeec' align='right'>6273792</td><td bgcolor='#eeeeec'>Symfony\\Component\\EventDispatcher\\EventDispatcher->doDispatch( <span>$listeners = </span><span>[0 =&gt; class Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener { private $listener = [...]; private $optimizedListener = class Closure { virtual $closure = &quot;$this-&gt;onTerminate&quot;, ... }; private $name = &#39;Symfony\\\\Bundle\\\\SwiftmailerBundle\\\\EventListener\\\\EmailSenderListener&#39;; private $called = TRUE; private $stoppedPropagation = FALSE; private $stopwatch = class Symfony\\Component\\Stopwatch\\Stopwatch { ... }; private $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; private $pretty = &#39;Symfony\\\\Bundle\\\\SwiftmailerBundle\\\\EventListener\\\\EmailSenderListener::onTerminate&#39;; private $stub = class Symfony\\Component\\VarDumper\\Caster\\ClassStub { ... }; private $priority = 0 }, 1 =&gt; class Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener { private $listener = [...]; private $optimizedListener = class Closure { virtual $closure = &quot;$this-&gt;onKernelTerminate&quot;, ... }; private $name = &#39;Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\ProfilerListener&#39;; private $called = TRUE; private $stoppedPropagation = FALSE; private $stopwatch = class Symfony\\Component\\Stopwatch\\Stopwatch { ... }; private $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; private $pretty = &#39;Symfony\\\\Component\\\\HttpKernel\\\\EventListener\\\\ProfilerListener::onKernelTerminate&#39;; private $stub = class Symfony\\Component\\VarDumper\\Caster\\ClassStub { ... }; private $priority = -1024 }]</span>, <span>$eventName = </span><span>&#39;kernel.terminate&#39;</span>, <span>$event = </span><span>class Symfony\\Component\\HttpKernel\\Event\\TerminateEvent { private ${Symfony\\Component\\HttpKernel\\Event\\PostResponseEvent}response = class Symfony\\Component\\HttpFoundation\\Response { public $headers = class Symfony\\Component\\HttpFoundation\\ResponseHeaderBag { ... }; protected $content = &#39;&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;\\n&lt;html lang=&quot;en&quot;&gt;\\n    &lt;head&gt;\\n        &lt;link rel=&quot;stylesheet&quot; href=&quot;/bundles/uvdesksupportcenter/css/knowledgebase.css&quot;&gt;\\n        &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.7.14/css/bootstrap-datetimepicker.min.css&quot;&gt;\\n        \\n        &lt;script src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js&quot;&gt;&lt;/script&gt;\\n        &lt;script src=&quot;htt&#39;; protected $version = &#39;1.1&#39;; protected $statusCode = 200; protected $statusText = &#39;OK&#39;; protected $charset = &#39;UTF-8&#39; }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}kernel = class Symfony\\Component\\HttpKernel\\HttpKernel { protected $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; protected $resolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableControllerResolver { ... }; protected $requestStack = class Symfony\\Component\\HttpFoundation\\RequestStack { ... }; private $argumentResolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableArgumentResolver { ... } }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}request = class Symfony\\Component\\HttpFoundation\\Request { public $attributes = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $request = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $query = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $server = class Symfony\\Component\\HttpFoundation\\ServerBag { ... }; public $files = class Symfony\\Component\\HttpFoundation\\FileBag { ... }; public $cookies = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $headers = class Symfony\\Component\\HttpFoundation\\HeaderBag { ... }; protected $content = &#39;&#39;; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = &#39;/en/&#39;; protected $requestUri = &#39;/en/&#39;; protected $baseUrl = &#39;&#39;; protected $basePath = &#39;&#39;; protected $method = &#39;GET&#39;; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { ... }; protected $locale = &#39;en&#39;; protected $defaultLocale = &#39;en&#39;; private $preferredFormat = NULL; private $isHostValid = TRUE; private $isForwardedValid = TRUE; private $isSafeContentPreferred = NULL }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}requestType = 1; private ${Symfony\\Component\\EventDispatcher\\Event}propagationStopped = FALSE }</span> )</td><td title='/var/www/uvdesk/vendor/symfony/event-dispatcher/EventDispatcher.php' bgcolor='#eeeeec'>.../EventDispatcher.php<b>:</b>239</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>8</td><td bgcolor='#eeeeec' align='center'>0.1697</td><td bgcolor='#eeeeec' align='right'>6274792</td><td bgcolor='#eeeeec'>Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener->__invoke( <span>$event = </span><span>class Symfony\\Component\\HttpKernel\\Event\\TerminateEvent { private ${Symfony\\Component\\HttpKernel\\Event\\PostResponseEvent}response = class Symfony\\Component\\HttpFoundation\\Response { public $headers = class Symfony\\Component\\HttpFoundation\\ResponseHeaderBag { ... }; protected $content = &#39;&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;\\n&lt;html lang=&quot;en&quot;&gt;\\n    &lt;head&gt;\\n        &lt;link rel=&quot;stylesheet&quot; href=&quot;/bundles/uvdesksupportcenter/css/knowledgebase.css&quot;&gt;\\n        &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.7.14/css/bootstrap-datetimepicker.min.css&quot;&gt;\\n        \\n        &lt;script src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js&quot;&gt;&lt;/script&gt;\\n        &lt;script src=&quot;htt&#39;; protected $version = &#39;1.1&#39;; protected $statusCode = 200; protected $statusText = &#39;OK&#39;; protected $charset = &#39;UTF-8&#39; }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}kernel = class Symfony\\Component\\HttpKernel\\HttpKernel { protected $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; protected $resolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableControllerResolver { ... }; protected $requestStack = class Symfony\\Component\\HttpFoundation\\RequestStack { ... }; private $argumentResolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableArgumentResolver { ... } }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}request = class Symfony\\Component\\HttpFoundation\\Request { public $attributes = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $request = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $query = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $server = class Symfony\\Component\\HttpFoundation\\ServerBag { ... }; public $files = class Symfony\\Component\\HttpFoundation\\FileBag { ... }; public $cookies = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $headers = class Symfony\\Component\\HttpFoundation\\HeaderBag { ... }; protected $content = &#39;&#39;; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = &#39;/en/&#39;; protected $requestUri = &#39;/en/&#39;; protected $baseUrl = &#39;&#39;; protected $basePath = &#39;&#39;; protected $method = &#39;GET&#39;; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { ... }; protected $locale = &#39;en&#39;; protected $defaultLocale = &#39;en&#39;; private $preferredFormat = NULL; private $isHostValid = TRUE; private $isForwardedValid = TRUE; private $isSafeContentPreferred = NULL }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}requestType = 1; private ${Symfony\\Component\\EventDispatcher\\Event}propagationStopped = FALSE }</span>, <span>$eventName = </span><span>&#39;kernel.terminate&#39;</span>, <span>$dispatcher = </span><span>class Symfony\\Component\\EventDispatcher\\EventDispatcher { private $listeners = [&#39;kernel.controller&#39; =&gt; [...], &#39;kernel.request&#39; =&gt; [...], &#39;console.command&#39; =&gt; [...], &#39;console.terminate&#39; =&gt; [...], &#39;uvdesk.automation.prepared_response.execute&#39; =&gt; [...], &#39;uvdesk.automation.workflow.execute&#39; =&gt; [...], &#39;kernel.controller_arguments&#39; =&gt; [...], &#39;kernel.exception&#39; =&gt; [...], &#39;kernel.response&#39; =&gt; [...], &#39;kernel.finish_request&#39; =&gt; [...], &#39;console.error&#39; =&gt; [...], &#39;kernel.terminate&#39; =&gt; [...], &#39;knp_pager.before&#39; =&gt; [...], &#39;knp_pager.pagination&#39; =&gt; [...], &#39;kernel.view&#39; =&gt; [...], &#39;debug.security.authorization.vote&#39; =&gt; [...]]; private $sorted = [&#39;kernel.controller&#39; =&gt; [...], &#39;kernel.request&#39; =&gt; [...], &#39;console.command&#39; =&gt; [...], &#39;console.terminate&#39; =&gt; [...], &#39;uvdesk.automation.prepared_response.execute&#39; =&gt; [...], &#39;uvdesk.automation.workflow.execute&#39; =&gt; [...], &#39;kernel.controller_arguments&#39; =&gt; [...], &#39;kernel.exception&#39; =&gt; [...], &#39;kernel.response&#39; =&gt; [...], &#39;kernel.finish_request&#39; =&gt; [...], &#39;console.error&#39; =&gt; [...], &#39;kernel.terminate&#39; =&gt; [...], &#39;knp_pager.before&#39; =&gt; [...], &#39;knp_pager.pagination&#39; =&gt; [...], &#39;kernel.view&#39; =&gt; [...], &#39;debug.security.authorization.vote&#39; =&gt; [...]]; private $optimized = [&#39;kernel.terminate&#39; =&gt; [...]] }</span> )</td><td title='/var/www/uvdesk/vendor/symfony/event-dispatcher/EventDispatcher.php' bgcolor='#eeeeec'>.../EventDispatcher.php<b>:</b>264</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>9</td><td bgcolor='#eeeeec' align='center'>0.1697</td><td bgcolor='#eeeeec' align='right'>6274792</td><td bgcolor='#eeeeec'>Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener->onKernelTerminate( <span>$event = </span><span>class Symfony\\Component\\HttpKernel\\Event\\TerminateEvent { private ${Symfony\\Component\\HttpKernel\\Event\\PostResponseEvent}response = class Symfony\\Component\\HttpFoundation\\Response { public $headers = class Symfony\\Component\\HttpFoundation\\ResponseHeaderBag { ... }; protected $content = &#39;&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;\\n&lt;html lang=&quot;en&quot;&gt;\\n    &lt;head&gt;\\n        &lt;link rel=&quot;stylesheet&quot; href=&quot;/bundles/uvdesksupportcenter/css/knowledgebase.css&quot;&gt;\\n        &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.7.14/css/bootstrap-datetimepicker.min.css&quot;&gt;\\n        \\n        &lt;script src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js&quot;&gt;&lt;/script&gt;\\n        &lt;script src=&quot;htt&#39;; protected $version = &#39;1.1&#39;; protected $statusCode = 200; protected $statusText = &#39;OK&#39;; protected $charset = &#39;UTF-8&#39; }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}kernel = class Symfony\\Component\\HttpKernel\\HttpKernel { protected $dispatcher = class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { ... }; protected $resolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableControllerResolver { ... }; protected $requestStack = class Symfony\\Component\\HttpFoundation\\RequestStack { ... }; private $argumentResolver = class Symfony\\Component\\HttpKernel\\Controller\\TraceableArgumentResolver { ... } }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}request = class Symfony\\Component\\HttpFoundation\\Request { public $attributes = class Symfony\\Component\\HttpFoundation\\ParameterBag { ... }; public $request = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $query = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $server = class Symfony\\Component\\HttpFoundation\\ServerBag { ... }; public $files = class Symfony\\Component\\HttpFoundation\\FileBag { ... }; public $cookies = class Symfony\\Component\\HttpFoundation\\InputBag { ... }; public $headers = class Symfony\\Component\\HttpFoundation\\HeaderBag { ... }; protected $content = &#39;&#39;; protected $languages = NULL; protected $charsets = NULL; protected $encodings = NULL; protected $acceptableContentTypes = NULL; protected $pathInfo = &#39;/en/&#39;; protected $requestUri = &#39;/en/&#39;; protected $baseUrl = &#39;&#39;; protected $basePath = &#39;&#39;; protected $method = &#39;GET&#39;; protected $format = NULL; protected $session = class Symfony\\Component\\HttpFoundation\\Session\\Session { ... }; protected $locale = &#39;en&#39;; protected $defaultLocale = &#39;en&#39;; private $preferredFormat = NULL; private $isHostValid = TRUE; private $isForwardedValid = TRUE; private $isSafeContentPreferred = NULL }; private ${Symfony\\Component\\HttpKernel\\Event\\KernelEvent}requestType = 1; private ${Symfony\\Component\\EventDispatcher\\Event}propagationStopped = FALSE }</span>, <span>&#39;kernel.terminate&#39;</span>, <span>class Symfony\\Component\\HttpKernel\\Debug\\TraceableEventDispatcher { protected $logger = class Symfony\\Bridge\\Monolog\\Logger { protected $name = &#39;event&#39;; protected $handlers = [...]; protected $processors = [...]; protected $microsecondTimestamps = TRUE; protected $timezone = class DateTimeZone { ... }; protected $exceptionHandler = NULL }; protected $stopwatch = class Symfony\\Component\\Stopwatch\\Stopwatch { private $morePrecision = TRUE; private $sections = [...]; private $activeSections = [...] }; private ${Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher}callStack = class SplObjectStorage { private $storage = [...] }; private ${Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher}dispatcher = class Symfony\\Component\\EventDispatcher\\EventDispatcher { private $listeners = [...]; private $sorted = [...]; private $optimized = [...] }; private ${Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher}wrappedListeners = [&#39;kernel.terminate&#39; =&gt; [...]]; private ${Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher}orphanedEvents = [&#39;0000000036e6261e0000000073eb5881&#39; =&gt; [...]]; private ${Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher}requestStack = class Symfony\\Component\\HttpFoundation\\RequestStack { private $requests = [...] }; private ${Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher}currentRequestHash = &#39;&#39; }</span> )</td><td title='/var/www/uvdesk/vendor/symfony/event-dispatcher/Debug/WrappedListener.php' bgcolor='#eeeeec'>.../WrappedListener.php<b>:</b>126</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>10</td><td bgcolor='#eeeeec' align='center'>0.1697</td><td bgcolor='#eeeeec' align='right'>6274904</td><td bgcolor='#eeeeec'>Symfony\\Component\\HttpKernel\\Profiler\\Profiler->saveProfile( <span>$profile = </span><span>class Symfony\\Component\\HttpKernel\\Profiler\\Profile { private $token = &#39;428cdb&#39;; private $collectors = [&#39;request&#39; =&gt; class Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector { ... }, &#39;time&#39; =&gt; class Symfony\\Component\\HttpKernel\\DataCollector\\TimeDataCollector { ... }, &#39;memory&#39; =&gt; class Symfony\\Component\\HttpKernel\\DataCollector\\MemoryDataCollector { ... }, &#39;validator&#39; =&gt; class Symfony\\Component\\Validator\\DataCollector\\ValidatorDataCollector { ... }, &#39;ajax&#39; =&gt; class Symfony\\Component\\HttpKernel\\DataCollector\\AjaxDataCollector { ... }, &#39;form&#39; =&gt; class Symfony\\Component\\Form\\Extension\\DataCollector\\FormDataCollector { ... }, &#39;exception&#39; =&gt; class Symfony\\Component\\HttpKernel\\DataCollector\\ExceptionDataCollector { ... }, &#39;logger&#39; =&gt; class Symfony\\Component\\HttpKernel\\DataCollector\\LoggerDataCollector { ... }, &#39;events&#39; =&gt; class Symfony\\Component\\HttpKernel\\DataCollector\\EventDataCollector { ... }, &#39;router&#39; =&gt; class Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector { ... }, &#39;cache&#39; =&gt; class Symfony\\Component\\Cache\\DataCollector\\CacheDataCollector { ... }, &#39;translation&#39; =&gt; class Symfony\\Component\\Translation\\DataCollector\\TranslationDataCollector { ... }, &#39;security&#39; =&gt; class Symfony\\Bundle\\SecurityBundle\\DataCollector\\SecurityDataCollector { ... }, &#39;twig&#39; =&gt; class Symfony\\Bridge\\Twig\\DataCollector\\TwigDataCollector { ... }, &#39;http_client&#39; =&gt; class Symfony\\Component\\HttpClient\\DataCollector\\HttpClientDataCollector { ... }, &#39;db&#39; =&gt; class Doctrine\\Bundle\\DoctrineBundle\\DataCollector\\DoctrineDataCollector { ... }, &#39;swiftmailer&#39; =&gt; class Symfony\\Bundle\\SwiftmailerBundle\\DataCollector\\MessageDataCollector { ... }, &#39;dump&#39; =&gt; class Symfony\\Component\\HttpKernel\\DataCollector\\DumpDataCollector { ... }, &#39;config&#39; =&gt; class Symfony\\Component\\HttpKernel\\DataCollector\\ConfigDataCollector { ... }]; private $ip = &#39;150.136.50.32&#39;; private $method = &#39;GET&#39;; private $url = &#39;http://tickets.spartanit.pro/en/&#39;; private $time = 1734787692; private $statusCode = 200; private $parent = NULL; private $children = [] }</span> )</td><td title='/var/www/uvdesk/vendor/symfony/http-kernel/EventListener/ProfilerListener.php' bgcolor='#eeeeec'>.../ProfilerListener.php<b>:</b>112</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>11</td><td bgcolor='#eeeeec' align='center'>0.2553</td><td bgcolor='#eeeeec' align='right'>8979328</td><td bgcolor='#eeeeec'>Symfony\\Component\\HttpKernel\\Profiler\\FileProfilerStorage->write( <span>$profile = </span><span>class Symfony\\Component\\HttpKernel\\Profiler\\Profile { private $token = &#39;428cdb&#39;; private $collectors = [&#39;request&#39; =&gt; class Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector { ... }, &#39;time&#39; =&gt; class Symfony\\Component\\HttpKernel\\DataCollector\\TimeDataCollector { ... }, &#39;memory&#39; =&gt; class Symfony\\Component\\HttpKernel\\DataCollector\\MemoryDataCollector { ... }, &#39;validator&#39; =&gt; class Symfony\\Component\\Validator\\DataCollector\\ValidatorDataCollector { ... }, &#39;ajax&#39; =&gt; class Symfony\\Component\\HttpKernel\\DataCollector\\AjaxDataCollector { ... }, &#39;form&#39; =&gt; class Symfony\\Component\\Form\\Extension\\DataCollector\\FormDataCollector { ... }, &#39;exception&#39; =&gt; class Symfony\\Component\\HttpKernel\\DataCollector\\ExceptionDataCollector { ... }, &#39;logger&#39; =&gt; class Symfony\\Component\\HttpKernel\\DataCollector\\LoggerDataCollector { ... }, &#39;events&#39; =&gt; class Symfony\\Component\\HttpKernel\\DataCollector\\EventDataCollector { ... }, &#39;router&#39; =&gt; class Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector { ... }, &#39;cache&#39; =&gt; class Symfony\\Component\\Cache\\DataCollector\\CacheDataCollector { ... }, &#39;translation&#39; =&gt; class Symfony\\Component\\Translation\\DataCollector\\TranslationDataCollector { ... }, &#39;security&#39; =&gt; class Symfony\\Bundle\\SecurityBundle\\DataCollector\\SecurityDataCollector { ... }, &#39;twig&#39; =&gt; class Symfony\\Bridge\\Twig\\DataCollector\\TwigDataCollector { ... }, &#39;http_client&#39; =&gt; class Symfony\\Component\\HttpClient\\DataCollector\\HttpClientDataCollector { ... }, &#39;db&#39; =&gt; class Doctrine\\Bundle\\DoctrineBundle\\DataCollector\\DoctrineDataCollector { ... }, &#39;swiftmailer&#39; =&gt; class Symfony\\Bundle\\SwiftmailerBundle\\DataCollector\\MessageDataCollector { ... }, &#39;dump&#39; =&gt; class Symfony\\Component\\HttpKernel\\DataCollector\\DumpDataCollector { ... }, &#39;config&#39; =&gt; class Symfony\\Component\\HttpKernel\\DataCollector\\ConfigDataCollector { ... }]; private $ip = &#39;150.136.50.32&#39;; private $method = &#39;GET&#39;; private $url = &#39;http://tickets.spartanit.pro/en/&#39;; private $time = 1734787692; private $statusCode = 200; private $parent = NULL; private $children = [] }</span> )</td><td title='/var/www/uvdesk/vendor/symfony/http-kernel/Profiler/Profiler.php' bgcolor='#eeeeec'>.../Profiler.php<b>:</b>104</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>12</td><td bgcolor='#eeeeec' align='center'>0.2669</td><td bgcolor='#eeeeec' align='right'>10367496</td><td bgcolor='#eeeeec'><a href='http://www.php.net/function.file-put-contents' target='_new'>file_put_contents</a>( <span>$filename = </span><span>&#39;compress.zlib:///var/www/uvdesk/var/cache/dev/profiler/db/8c/428cdb&#39;</span>, <span>$data = </span><span>&#39;a:9:{s:5:&quot;token&quot;;s:6:&quot;428cdb&quot;;s:6:&quot;parent&quot;;N;s:8:&quot;children&quot;;a:0:{}s:4:&quot;data&quot;;a:19:{s:7:&quot;request&quot;;O:63:&quot;Symfony\\\\Component\\\\HttpKernel\\\\DataCollector\\\\RequestDataCollector&quot;:1:{s:7:&quot;\\000*\\000data&quot;;O:39:&quot;Symfony\\\\Component\\\\VarDumper\\\\Cloner\\\\Data&quot;:7:{s:45:&quot;\\000Symfony\\\\Component\\\\VarDumper\\\\Cloner\\\\Data\\000data&quot;;a:13:{i:0;a:1:{i:0;a:1:{i:1;i:1;}}i:1;a:25:{s:6:&quot;method&quot;;s:3:&quot;GET&quot;;s:6:&quot;format&quot;;s:4:&quot;html&quot;;s:7:&quot;content&quot;;s:0:&quot;&quot;;s:12:&quot;content_type&quot;;s:24:&quot;text/html; charset=UTF-8&quot;;s:11:&quot;status_text&quot;;s:2:&quot;OK&quot;;s:11:&quot;st&#39;</span>, <span>$flags = </span><span>0</span>, <span>$context = </span><span>resource(73) of type (stream-context)</span> )</td><td title='/var/www/uvdesk/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php' bgcolor='#eeeeec'>.../FileProfilerStorage.php<b>:</b>175</td></tr>\n<tr><td bgcolor='#eeeeec' align='center'>13</td><td bgcolor='#eeeeec' align='center'>0.2702</td><td bgcolor='#eeeeec' align='right'>10369792</td><td bgcolor='#eeeeec'>Symfony\\Component\\ErrorHandler\\ErrorHandler->handleError( <span>$type = </span><span>2</span>, <span>$message = </span><span>&#39;file_put_contents(): Only 417792 of 718842 bytes written, possibly out of free disk space&#39;</span>, <span>$file = </span><span>&#39;/var/www/uvdesk/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php&#39;</span>, <span>$line = </span><span>175</span>, <span>[&#39;profile&#39; =&gt; class Symfony\\Component\\HttpKernel\\Profiler\\Profile { private $token = &#39;428cdb&#39;; private $collectors = [...]; private $ip = &#39;150.136.50.32&#39;; private $method = &#39;GET&#39;; private $url = &#39;http://tickets.spartanit.pro/en/&#39;; private $time = 1734787692; private $statusCode = 200; private $parent = NULL; private $children = [...] }, &#39;file&#39; =&gt; &#39;compress.zlib:///var/www/uvdesk/var/cache/dev/profiler/db/8c/428cdb&#39;, &#39;profileIndexed&#39; =&gt; FALSE, &#39;dir&#39; =&gt; &#39;/var/www/uvdesk/var/cache/dev/profiler/db/8c&#39;, &#39;profileToken&#39; =&gt; &#39;428cdb&#39;, &#39;parentToken&#39; =&gt; NULL, &#39;childrenToken&#39; =&gt; [], &#39;data&#39; =&gt; [&#39;token&#39; =&gt; &#39;428cdb&#39;, &#39;parent&#39; =&gt; NULL, &#39;children&#39; =&gt; [...], &#39;data&#39; =&gt; [...], &#39;ip&#39; =&gt; &#39;150.136.50.32&#39;, &#39;method&#39; =&gt; &#39;GET&#39;, &#39;url&#39; =&gt; &#39;http://tickets.spartanit.pro/en/&#39;, &#39;time&#39; =&gt; 1734787692, &#39;status_code&#39; =&gt; 200], &#39;context&#39; =&gt; resource(73) of type (stream-context)]</span> )</td><td title='/var/www/uvdesk/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php' bgcolor='#eeeeec'>.../FileProfilerStorage.php<b>:</b>175</td></tr>\n"
    }
}
DEBUG 13:28:12 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 13:28:12 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 13:28:12 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 13:28:12 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 13:28:12 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 13:28:12 event Notified event "kernel.request" to listener "Symfony\Bundle\FrameworkBundle\EventListener\ResolveControllerNameSubscriber::resolveControllerName".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\EventListener\\ResolveControllerNameSubscriber::resolveControllerName"
}
DEBUG 13:28:12 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 13:28:12 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 13:28:12 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 13:28:12 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 13:28:12 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 13:28:12 event Notified event "kernel.request" to listener "Webkul\UVDesk\ExtensionFrameworkBundle\EventListener\Kernel::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Webkul\\UVDesk\\ExtensionFrameworkBundle\\EventListener\\Kernel::onKernelRequest"
}
DEBUG 13:28:12 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 13:28:12 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 13:28:12 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 13:28:12 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 13:28:12 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 13:28:12 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 13:28:12 event Notified event "kernel.controller_arguments" to listener "Webkul\UVDesk\ExtensionFrameworkBundle\EventListener\Kernel::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Webkul\\UVDesk\\ExtensionFrameworkBundle\\EventListener\\Kernel::onKernelControllerArguments"
}
DEBUG 13:28:12 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
DEBUG 13:28:12 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
DEBUG 13:28:12 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
INFO 13:28:13 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 13:28:13 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 13:28:13 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 13:28:13 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 13:28:13 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 13:28:13 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 13:28:13 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 13:28:13 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 13:28:13 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 13:28:13 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 13:28:13 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 13:28:13 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 13:28:13 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 13:28:13 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 13:28:13 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 13:28:13 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 13:28:13 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 13:28:13 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 13:28:13 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 13:28:13 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 13:28:13 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 13:28:13 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}

Stack Trace

ErrorException

ErrorException:
Warning: file_put_contents(): Only 417792 of 718842 bytes written, possibly out of free disk space

  at vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php:175
  at Symfony\Component\HttpKernel\Profiler\FileProfilerStorage->write(object(Profile))
     (vendor/symfony/http-kernel/Profiler/Profiler.php:104)
  at Symfony\Component\HttpKernel\Profiler\Profiler->saveProfile(object(Profile))
     (vendor/symfony/http-kernel/EventListener/ProfilerListener.php:112)
  at Symfony\Component\HttpKernel\EventListener\ProfilerListener->onKernelTerminate(object(TerminateEvent), 'kernel.terminate', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:126)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(TerminateEvent), 'kernel.terminate', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:264)
  at Symfony\Component\EventDispatcher\EventDispatcher->doDispatch(array(object(WrappedListener), object(WrappedListener)), 'kernel.terminate', object(TerminateEvent))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:239)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener)), 'kernel.terminate', object(TerminateEvent))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:73)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(TerminateEvent), 'kernel.terminate')
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:168)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(TerminateEvent), 'kernel.terminate')
     (vendor/symfony/http-kernel/HttpKernel.php:100)
  at Symfony\Component\HttpKernel\HttpKernel->terminate(object(Request), object(Response))
     (vendor/symfony/http-kernel/Kernel.php:166)
  at Symfony\Component\HttpKernel\Kernel->terminate(object(Request), object(Response))
     (public/index.php:27)                
Warning: file_put_contents(): Only 417792 of 741740 bytes written, possibly out of free disk space (500 Internal Server Error)

Symfony Exception

ErrorException

HTTP 500 Internal Server Error

Warning: file_put_contents(): Only 417792 of 741740 bytes written, possibly out of free disk space

Exception

ErrorException

  1.         if (\function_exists('gzcompress')) {
  2.             $file 'compress.zlib://'.$file;
  3.             stream_context_set_option($context'zlib''level'3);
  4.         }
  5.         if (false === file_put_contents($fileserialize($data), 0$context)) {
  6.             return false;
  7.         }
  8.         if (!$profileIndexed) {
  9.             // Add to index
  1.             if ($collector instanceof LateDataCollectorInterface) {
  2.                 $collector->lateCollect();
  3.             }
  4.         }
  5.         if (!($ret $this->storage->write($profile)) && null !== $this->logger) {
  6.             $this->logger->warning('Unable to store the profiler information.', ['configured_storage' => \get_class($this->storage)]);
  7.         }
  8.         return $ret;
  9.     }
  1.             }
  2.         }
  3.         // save profiles
  4.         foreach ($this->profiles as $request) {
  5.             $this->profiler->saveProfile($this->profiles[$request]);
  6.         }
  7.         $this->profiles = new \SplObjectStorage();
  8.         $this->parents = new \SplObjectStorage();
  9.     }
  1.         $this->called true;
  2.         $this->priority $dispatcher->getListenerPriority($eventName$this->listener);
  3.         $e $this->stopwatch->start($this->name'event_listener');
  4.         ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         if ($e->isStarted()) {
  6.             $e->stop();
  7.         }
  1.     {
  2.         foreach ($listeners as $listener) {
  3.             if ($event->isPropagationStopped()) {
  4.                 break;
  5.             }
  6.             $listener($event$eventName$this);
  7.         }
  8.     }
  9.     /**
  10.      * Sorts the internal list of listeners for the given event by priority.
  1.      * @param object     $event     The event object to pass to the event handlers/listeners
  2.      */
  3.     protected function callListeners(iterable $listenersstring $eventName$event)
  4.     {
  5.         if ($event instanceof Event) {
  6.             $this->doDispatch($listeners$eventName$event);
  7.             return;
  8.         }
  9.         $stoppable $event instanceof ContractsEvent || $event instanceof StoppableEventInterface;
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function terminate(Request $requestResponse $response)
  5.     {
  6.         $this->dispatcher->dispatch(new TerminateEvent($this$request$response), KernelEvents::TERMINATE);
  7.     }
  8.     /**
  9.      * @internal
  10.      */
  1.         $response $this->handleThrowable($exception$requestself::MASTER_REQUEST);
  2.         $response->sendHeaders();
  3.         $response->sendContent();
  4.         $this->terminate($request$response);
  5.     }
  6.     /**
  7.      * Handles a request to convert it to a response.
  8.      *
  1.                         if ($hasRun) {
  2.                             throw $e;
  3.                         }
  4.                         $hasRun true;
  5.                         $kernel->terminateWithException($e$request);
  6.                     };
  7.                 }
  8.             } elseif ($event instanceof ConsoleEvent && $app $event->getCommand()->getApplication()) {
  9.                 $output $event->getOutput();
  10.                 if ($output instanceof ConsoleOutputInterface) {
in /var/www/uvdesk/vendor/symfony/error-handler/ErrorHandler.php :: Symfony\Component\HttpKernel\EventListener\{closure} (line 601)
  1.             $this->exceptionHandler null;
  2.         }
  3.         try {
  4.             if (null !== $exceptionHandler) {
  5.                 return $exceptionHandler($exception);
  6.             }
  7.             $handlerException $handlerException ?: $exception;
  8.         } catch (\Throwable $handlerException) {
  9.         }
  10.         if ($exception === $handlerException && null === $this->exceptionHandler) {
ErrorHandler->handleException(object(ErrorException))

Stack Trace

ErrorException

ErrorException:
Warning: file_put_contents(): Only 417792 of 741740 bytes written, possibly out of free disk space

  at /var/www/uvdesk/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php:175
  at Symfony\Component\HttpKernel\Profiler\FileProfilerStorage->write(object(Profile))
     (/var/www/uvdesk/vendor/symfony/http-kernel/Profiler/Profiler.php:104)
  at Symfony\Component\HttpKernel\Profiler\Profiler->saveProfile(object(Profile))
     (/var/www/uvdesk/vendor/symfony/http-kernel/EventListener/ProfilerListener.php:112)
  at Symfony\Component\HttpKernel\EventListener\ProfilerListener->onKernelTerminate(object(TerminateEvent), 'kernel.terminate', object(TraceableEventDispatcher))
     (/var/www/uvdesk/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:126)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(TerminateEvent), 'kernel.terminate', object(TraceableEventDispatcher))
     (/var/www/uvdesk/vendor/symfony/event-dispatcher/EventDispatcher.php:264)
  at Symfony\Component\EventDispatcher\EventDispatcher->doDispatch(array(object(WrappedListener), object(WrappedListener)), 'kernel.terminate', object(TerminateEvent))
     (/var/www/uvdesk/vendor/symfony/event-dispatcher/EventDispatcher.php:239)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener)), 'kernel.terminate', object(TerminateEvent))
     (/var/www/uvdesk/vendor/symfony/event-dispatcher/EventDispatcher.php:73)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(TerminateEvent), 'kernel.terminate')
     (/var/www/uvdesk/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:168)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(TerminateEvent), 'kernel.terminate')
     (/var/www/uvdesk/vendor/symfony/http-kernel/HttpKernel.php:100)
  at Symfony\Component\HttpKernel\HttpKernel->terminate(object(Request), object(Response))
     (/var/www/uvdesk/vendor/symfony/http-kernel/HttpKernel.php:117)
  at Symfony\Component\HttpKernel\HttpKernel->terminateWithException(object(ErrorException), object(Request))
     (/var/www/uvdesk/vendor/symfony/http-kernel/EventListener/DebugHandlersListener.php:129)
  at Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::Symfony\Component\HttpKernel\EventListener\{closure}(object(ErrorException))
     (/var/www/uvdesk/vendor/symfony/error-handler/ErrorHandler.php:601)
  at Symfony\Component\ErrorHandler\ErrorHandler->handleException(object(ErrorException))