ErrorException (E_DEPRECATED)
Opis\Closure\SerializableClosure implements the Serializable interface, which is deprecated. Implement __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is necessary) ErrorException thrown with message "Opis\Closure\SerializableClosure implements the Serializable interface, which is deprecated. Implement __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is necessary)" Stacktrace: #15 ErrorException in /var/www/themez/vendor/opis/closure/src/SerializableClosure.php:18 #14 Illuminate\Foundation\Bootstrap\HandleExceptions:handleError in /var/www/themez/vendor/opis/closure/src/SerializableClosure.php:18 #13 include in /var/www/themez/vendor/composer/ClassLoader.php:480 #12 Composer\Autoload\includeFile in /var/www/themez/vendor/composer/ClassLoader.php:346 #11 Composer\Autoload\ClassLoader:loadClass in [internal]:0 #10 class_exists in /var/www/themez/vendor/laravel/framework/src/Illuminate/Encryption/EncryptionServiceProvider.php:45 #9 Illuminate\Encryption\EncryptionServiceProvider:registerOpisSecurityKey in /var/www/themez/vendor/laravel/framework/src/Illuminate/Encryption/EncryptionServiceProvider.php:19 #8 Illuminate\Encryption\EncryptionServiceProvider:register in /var/www/themez/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:672 #7 Illuminate\Foundation\Application:register in /var/www/themez/vendor/laravel/framework/src/Illuminate/Foundation/ProviderRepository.php:75 #6 Illuminate\Foundation\ProviderRepository:load in /var/www/themez/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:649 #5 Illuminate\Foundation\Application:registerConfiguredProviders in /var/www/themez/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterProviders.php:17 #4 Illuminate\Foundation\Bootstrap\RegisterProviders:bootstrap in /var/www/themez/vendor/laravel/framework/src/Illuminate/Foundation/Application.php:237 #3 Illuminate\Foundation\Application:bootstrapWith in /var/www/themez/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:152 #2 Illuminate\Foundation\Http\Kernel:bootstrap in /var/www/themez/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:136 #1 Illuminate\Foundation\Http\Kernel:sendRequestThroughRouter in /var/www/themez/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php:110 #0 Illuminate\Foundation\Http\Kernel:handle in /var/www/themez/www/index.php:52
15
ErrorException
/vendor/opis/closure/src/SerializableClosure.php18
14
Illuminate\Foundation\Bootstrap\HandleExceptions handleError
/vendor/opis/closure/src/SerializableClosure.php18
13
include
/vendor/composer/ClassLoader.php480
12
Composer\Autoload\includeFile
/vendor/composer/ClassLoader.php346
11
Composer\Autoload\ClassLoader loadClass
[internal]0
10
class_exists
/vendor/laravel/framework/src/Illuminate/Encryption/EncryptionServiceProvider.php45
9
Illuminate\Encryption\EncryptionServiceProvider registerOpisSecurityKey
/vendor/laravel/framework/src/Illuminate/Encryption/EncryptionServiceProvider.php19
8
Illuminate\Encryption\EncryptionServiceProvider register
/vendor/laravel/framework/src/Illuminate/Foundation/Application.php672
7
Illuminate\Foundation\Application register
/vendor/laravel/framework/src/Illuminate/Foundation/ProviderRepository.php75
6
Illuminate\Foundation\ProviderRepository load
/vendor/laravel/framework/src/Illuminate/Foundation/Application.php649
5
Illuminate\Foundation\Application registerConfiguredProviders
/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterProviders.php17
4
Illuminate\Foundation\Bootstrap\RegisterProviders bootstrap
/vendor/laravel/framework/src/Illuminate/Foundation/Application.php237
3
Illuminate\Foundation\Application bootstrapWith
/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php152
2
Illuminate\Foundation\Http\Kernel bootstrap
/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php136
1
Illuminate\Foundation\Http\Kernel sendRequestThroughRouter
/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php110
0
Illuminate\Foundation\Http\Kernel handle
/www/index.php52
/var/www/themez/vendor/opis/closure/src/SerializableClosure.php
<?php
/* ===========================================================================
 * Copyright (c) 2018-2021 Zindex Software
 *
 * Licensed under the MIT License
 * =========================================================================== */
 
namespace Opis\Closure;
 
use Closure;
use Serializable;
use SplObjectStorage;
use ReflectionObject;
 
/**
 * Provides a wrapper for serialization of closures
 */
class SerializableClosure implements Serializable
{
    /**
     * @var Closure Wrapped closure
     *
     * @see \Opis\Closure\SerializableClosure::getClosure()
     */
    protected $closure;
 
    /**
     * @var ReflectionClosure A reflection instance for closure
     *
     * @see \Opis\Closure\SerializableClosure::getReflector()
     */
    protected $reflector;
 
    /**
     * @var mixed Used at deserialization to hold variables
     *
     * @see \Opis\Closure\SerializableClosure::unserialize()
     * @see \Opis\Closure\SerializableClosure::getReflector()
     */
    protected $code;
Arguments
  1. "Opis\Closure\SerializableClosure implements the Serializable interface, which is deprecated. Implement __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is necessary)"
    
/var/www/themez/vendor/opis/closure/src/SerializableClosure.php
<?php
/* ===========================================================================
 * Copyright (c) 2018-2021 Zindex Software
 *
 * Licensed under the MIT License
 * =========================================================================== */
 
namespace Opis\Closure;
 
use Closure;
use Serializable;
use SplObjectStorage;
use ReflectionObject;
 
/**
 * Provides a wrapper for serialization of closures
 */
class SerializableClosure implements Serializable
{
    /**
     * @var Closure Wrapped closure
     *
     * @see \Opis\Closure\SerializableClosure::getClosure()
     */
    protected $closure;
 
    /**
     * @var ReflectionClosure A reflection instance for closure
     *
     * @see \Opis\Closure\SerializableClosure::getReflector()
     */
    protected $reflector;
 
    /**
     * @var mixed Used at deserialization to hold variables
     *
     * @see \Opis\Closure\SerializableClosure::unserialize()
     * @see \Opis\Closure\SerializableClosure::getReflector()
     */
    protected $code;
Arguments
  1. 8192
    
  2. "Opis\Closure\SerializableClosure implements the Serializable interface, which is deprecated. Implement __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is necessary)"
    
  3. "/var/www/themez/vendor/opis/closure/src/SerializableClosure.php"
    
  4. 18
    
/var/www/themez/vendor/composer/ClassLoader.php
            }
        }
 
        // PSR-0 include paths.
        if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) {
            return $file;
        }
 
        return false;
    }
}
 
/**
 * Scope isolated include.
 *
 * Prevents access to $this/self from included files.
 */
function includeFile($file)
{
    include $file;
}
 
Arguments
  1. "/var/www/themez/vendor/opis/closure/src/SerializableClosure.php"
    
/var/www/themez/vendor/composer/ClassLoader.php
     */
    public function unregister()
    {
        spl_autoload_unregister(array($this, 'loadClass'));
 
        if (null !== $this->vendorDir) {
            unset(self::$registeredLoaders[$this->vendorDir]);
        }
    }
 
    /**
     * Loads the given class or interface.
     *
     * @param  string    $class The name of the class
     * @return true|null True if loaded, null otherwise
     */
    public function loadClass($class)
    {
        if ($file = $this->findFile($class)) {
            includeFile($file);
 
            return true;
        }
 
        return null;
    }
 
    /**
     * Finds the path to the file where the class is defined.
     *
     * @param string $class The name of the class
     *
     * @return string|false The path if found, false otherwise
     */
    public function findFile($class)
    {
        // class map lookup
        if (isset($this->classMap[$class])) {
            return $this->classMap[$class];
        }
Arguments
  1. "/var/www/themez/vendor/composer/../opis/closure/src/SerializableClosure.php"
    
[internal]
Arguments
  1. "Opis\Closure\SerializableClosure"
    
/var/www/themez/vendor/laravel/framework/src/Illuminate/Encryption/EncryptionServiceProvider.php
     */
    protected function registerEncrypter()
    {
        $this->app->singleton('encrypter', function ($app) {
            $config = $app->make('config')->get('app');
 
            return new Encrypter($this->parseKey($config), $config['cipher']);
        });
    }
 
    /**
     * Configure Opis Closure signing for security.
     *
     * @return void
     */
    protected function registerOpisSecurityKey()
    {
        $config = $this->app->make('config')->get('app');
 
        if (! class_exists(SerializableClosure::class) || empty($config['key'])) {
            return;
        }
 
        SerializableClosure::setSecretKey($this->parseKey($config));
    }
 
    /**
     * Parse the encryption key.
     *
     * @param  array  $config
     * @return string
     */
    protected function parseKey(array $config)
    {
        if (Str::startsWith($key = $this->key($config), $prefix = 'base64:')) {
            $key = base64_decode(Str::after($key, $prefix));
        }
 
        return $key;
    }
Arguments
  1. "Opis\Closure\SerializableClosure"
    
/var/www/themez/vendor/laravel/framework/src/Illuminate/Encryption/EncryptionServiceProvider.php
<?php
 
namespace Illuminate\Encryption;
 
use Illuminate\Support\ServiceProvider;
use Illuminate\Support\Str;
use Opis\Closure\SerializableClosure;
 
class EncryptionServiceProvider extends ServiceProvider
{
    /**
     * Register the service provider.
     *
     * @return void
     */
    public function register()
    {
        $this->registerEncrypter();
        $this->registerOpisSecurityKey();
    }
 
    /**
     * Register the encrypter.
     *
     * @return void
     */
    protected function registerEncrypter()
    {
        $this->app->singleton('encrypter', function ($app) {
            $config = $app->make('config')->get('app');
 
            return new Encrypter($this->parseKey($config), $config['cipher']);
        });
    }
 
    /**
     * Configure Opis Closure signing for security.
     *
     * @return void
     */
/var/www/themez/vendor/laravel/framework/src/Illuminate/Foundation/Application.php
     * Register a service provider with the application.
     *
     * @param  \Illuminate\Support\ServiceProvider|string  $provider
     * @param  bool  $force
     * @return \Illuminate\Support\ServiceProvider
     */
    public function register($provider, $force = false)
    {
        if (($registered = $this->getProvider($provider)) && ! $force) {
            return $registered;
        }
 
        // If the given "provider" is a string, we will resolve it, passing in the
        // application instance automatically for the developer. This is simply
        // a more convenient way of specifying your service provider classes.
        if (is_string($provider)) {
            $provider = $this->resolveProvider($provider);
        }
 
        $provider->register();
 
        // If there are bindings / singletons set as properties on the provider we
        // will spin through them and register them with the application, which
        // serves as a convenience layer while registering a lot of bindings.
        if (property_exists($provider, 'bindings')) {
            foreach ($provider->bindings as $key => $value) {
                $this->bind($key, $value);
            }
        }
 
        if (property_exists($provider, 'singletons')) {
            foreach ($provider->singletons as $key => $value) {
                $this->singleton($key, $value);
            }
        }
 
        $this->markAsRegistered($provider);
 
        // If the application has already booted, we will call this boot method on
        // the provider class so it has an opportunity to do its boot logic and
/var/www/themez/vendor/laravel/framework/src/Illuminate/Foundation/ProviderRepository.php
 
        // First we will load the service manifest, which contains information on all
        // service providers registered with the application and which services it
        // provides. This is used to know which services are "deferred" loaders.
        if ($this->shouldRecompile($manifest, $providers)) {
            $manifest = $this->compileManifest($providers);
        }
 
        // Next, we will register events to load the providers for each of the events
        // that it has requested. This allows the service provider to defer itself
        // while still getting automatically loaded when a certain event occurs.
        foreach ($manifest['when'] as $provider => $events) {
            $this->registerLoadEvents($provider, $events);
        }
 
        // We will go ahead and register all of the eagerly loaded providers with the
        // application so their services can be registered with the application as
        // a provided service. Then we will set the deferred service list on it.
        foreach ($manifest['eager'] as $provider) {
            $this->app->register($provider);
        }
 
        $this->app->addDeferredServices($manifest['deferred']);
    }
 
    /**
     * Load the service provider manifest JSON file.
     *
     * @return array|null
     */
    public function loadManifest()
    {
        // The service manifest is a file containing a JSON representation of every
        // service provided by the application and whether its provider is using
        // deferred loading or should be eagerly loaded on each request to us.
        if ($this->files->exists($this->manifestPath)) {
            $manifest = $this->files->getRequire($this->manifestPath);
 
            if ($manifest) {
                return array_merge(['when' => []], $manifest);
Arguments
  1. Illuminate\Encryption\EncryptionServiceProvider {#71}
    
/var/www/themez/vendor/laravel/framework/src/Illuminate/Foundation/Application.php
    {
        return $this['env'] === 'testing';
    }
 
    /**
     * Register all of the configured providers.
     *
     * @return void
     */
    public function registerConfiguredProviders()
    {
        $providers = Collection::make($this->make('config')->get('app.providers'))
                        ->partition(function ($provider) {
                            return strpos($provider, 'Illuminate\\') === 0;
                        });
 
        $providers->splice(1, 0, [$this->make(PackageManifest::class)->providers()]);
 
        (new ProviderRepository($this, new Filesystem, $this->getCachedServicesPath()))
                    ->load($providers->collapse()->toArray());
    }
 
    /**
     * Register a service provider with the application.
     *
     * @param  \Illuminate\Support\ServiceProvider|string  $provider
     * @param  bool  $force
     * @return \Illuminate\Support\ServiceProvider
     */
    public function register($provider, $force = false)
    {
        if (($registered = $this->getProvider($provider)) && ! $force) {
            return $registered;
        }
 
        // If the given "provider" is a string, we will resolve it, passing in the
        // application instance automatically for the developer. This is simply
        // a more convenient way of specifying your service provider classes.
        if (is_string($provider)) {
            $provider = $this->resolveProvider($provider);
Arguments
  1. array:41 [
      0 => "Illuminate\Auth\AuthServiceProvider"
      1 => "Illuminate\Broadcasting\BroadcastServiceProvider"
      2 => "Illuminate\Bus\BusServiceProvider"
      3 => "Illuminate\Cache\CacheServiceProvider"
      4 => "Illuminate\Foundation\Providers\ConsoleSupportServiceProvider"
      5 => "Illuminate\Cookie\CookieServiceProvider"
      6 => "Illuminate\Database\DatabaseServiceProvider"
      7 => "Illuminate\Encryption\EncryptionServiceProvider"
      8 => "Illuminate\Filesystem\FilesystemServiceProvider"
      9 => "Illuminate\Foundation\Providers\FoundationServiceProvider"
      10 => "Illuminate\Hashing\HashServiceProvider"
      11 => "Illuminate\Mail\MailServiceProvider"
      12 => "Illuminate\Notifications\NotificationServiceProvider"
      13 => "Illuminate\Pagination\PaginationServiceProvider"
      14 => "Illuminate\Pipeline\PipelineServiceProvider"
      15 => "Illuminate\Queue\QueueServiceProvider"
      16 => "Illuminate\Redis\RedisServiceProvider"
      17 => "Illuminate\Auth\Passwords\PasswordResetServiceProvider"
      18 => "Illuminate\Session\SessionServiceProvider"
      19 => "Illuminate\Translation\TranslationServiceProvider"
      20 => "Illuminate\Validation\ValidationServiceProvider"
      21 => "Illuminate\View\ViewServiceProvider"
      22 => "Encore\Admin\AdminServiceProvider"
      23 => "Facade\Ignition\IgnitionServiceProvider"
      24 => "Fruitcake\Cors\CorsServiceProvider"
      25 => "Intervention\Image\ImageServiceProvider"
      26 => "Laravel\Sail\SailServiceProvider"
      27 => "Laravel\Sanctum\SanctumServiceProvider"
      28 => "Laravel\Socialite\SocialiteServiceProvider"
      29 => "Laravel\Tinker\TinkerServiceProvider"
      30 => "Laravel\Ui\UiServiceProvider"
      31 => "Mews\Captcha\CaptchaServiceProvider"
      32 => "Carbon\Laravel\ServiceProvider"
      33 => "NetoJose\Bootstrap4Forms\Bootstrap4FormsServiceProvider"
      34 => "NunoMaduro\Collision\Adapters\Laravel\CollisionServiceProvider"
      35 => "PulkitJalan\GeoIP\GeoIPServiceProvider"
      36 => "NetoJose\Bootstrap4Forms\Bootstrap4FormsServiceProvider"
      37 => "App\Providers\AppServiceProvider"
      38 => "App\Providers\AuthServiceProvider"
      39 => "App\Providers\EventServiceProvider"
      40 => "App\Providers\RouteServiceProvider"
    ]
    
/var/www/themez/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/RegisterProviders.php
<?php
 
namespace Illuminate\Foundation\Bootstrap;
 
use Illuminate\Contracts\Foundation\Application;
 
class RegisterProviders
{
    /**
     * Bootstrap the given application.
     *
     * @param  \Illuminate\Contracts\Foundation\Application  $app
     * @return void
     */
    public function bootstrap(Application $app)
    {
        $app->registerConfiguredProviders();
    }
}
 
/var/www/themez/vendor/laravel/framework/src/Illuminate/Foundation/Application.php
    {
        $this->register(new EventServiceProvider($this));
        $this->register(new LogServiceProvider($this));
        $this->register(new RoutingServiceProvider($this));
    }
 
    /**
     * Run the given array of bootstrap classes.
     *
     * @param  string[]  $bootstrappers
     * @return void
     */
    public function bootstrapWith(array $bootstrappers)
    {
        $this->hasBeenBootstrapped = true;
 
        foreach ($bootstrappers as $bootstrapper) {
            $this['events']->dispatch('bootstrapping: '.$bootstrapper, [$this]);
 
            $this->make($bootstrapper)->bootstrap($this);
 
            $this['events']->dispatch('bootstrapped: '.$bootstrapper, [$this]);
        }
    }
 
    /**
     * Register a callback to run after loading the environment.
     *
     * @param  \Closure  $callback
     * @return void
     */
    public function afterLoadingEnvironment(Closure $callback)
    {
        return $this->afterBootstrapping(
            LoadEnvironmentVariables::class, $callback
        );
    }
 
    /**
     * Register a callback to run before a bootstrapper.
Arguments
  1. Illuminate\Foundation\Application {#2}
    
/var/www/themez/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
 
        Facade::clearResolvedInstance('request');
 
        $this->bootstrap();
 
        return (new Pipeline($this->app))
                    ->send($request)
                    ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
                    ->then($this->dispatchToRouter());
    }
 
    /**
     * Bootstrap the application for HTTP requests.
     *
     * @return void
     */
    public function bootstrap()
    {
        if (! $this->app->hasBeenBootstrapped()) {
            $this->app->bootstrapWith($this->bootstrappers());
        }
    }
 
    /**
     * Get the route dispatcher callback.
     *
     * @return \Closure
     */
    protected function dispatchToRouter()
    {
        return function ($request) {
            $this->app->instance('request', $request);
 
            return $this->router->dispatch($request);
        };
    }
 
    /**
     * Call the terminate method on any terminable middleware.
     *
Arguments
  1. array:6 [
      0 => "Illuminate\Foundation\Bootstrap\LoadEnvironmentVariables"
      1 => "Illuminate\Foundation\Bootstrap\LoadConfiguration"
      2 => "Illuminate\Foundation\Bootstrap\HandleExceptions"
      3 => "Illuminate\Foundation\Bootstrap\RegisterFacades"
      4 => "Illuminate\Foundation\Bootstrap\RegisterProviders"
      5 => "Illuminate\Foundation\Bootstrap\BootProviders"
    ]
    
/var/www/themez/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
        $this->app['events']->dispatch(
            new RequestHandled($request, $response)
        );
 
        return $response;
    }
 
    /**
     * Send the given request through the middleware / router.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Http\Response
     */
    protected function sendRequestThroughRouter($request)
    {
        $this->app->instance('request', $request);
 
        Facade::clearResolvedInstance('request');
 
        $this->bootstrap();
 
        return (new Pipeline($this->app))
                    ->send($request)
                    ->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
                    ->then($this->dispatchToRouter());
    }
 
    /**
     * Bootstrap the application for HTTP requests.
     *
     * @return void
     */
    public function bootstrap()
    {
        if (! $this->app->hasBeenBootstrapped()) {
            $this->app->bootstrapWith($this->bootstrappers());
        }
    }
 
    /**
/var/www/themez/vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
    public function __construct(Application $app, Router $router)
    {
        $this->app = $app;
        $this->router = $router;
 
        $this->syncMiddlewareToRouter();
    }
 
    /**
     * Handle an incoming HTTP request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Http\Response
     */
    public function handle($request)
    {
        try {
            $request->enableHttpMethodParameterOverride();
 
            $response = $this->sendRequestThroughRouter($request);
        } catch (Throwable $e) {
            $this->reportException($e);
 
            $response = $this->renderException($request, $e);
        }
 
        $this->app['events']->dispatch(
            new RequestHandled($request, $response)
        );
 
        return $response;
    }
 
    /**
     * Send the given request through the middleware / router.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return \Illuminate\Http\Response
     */
    protected function sendRequestThroughRouter($request)
Arguments
  1. Illuminate\Http\Request {#43
      +attributes: Symfony\Component\HttpFoundation\ParameterBag {#45}
      +request: Symfony\Component\HttpFoundation\InputBag {#51}
      +query: Symfony\Component\HttpFoundation\InputBag {#51}
      +server: Symfony\Component\HttpFoundation\ServerBag {#47}
      +files: Symfony\Component\HttpFoundation\FileBag {#48}
      +cookies: Symfony\Component\HttpFoundation\InputBag {#46}
      +headers: Symfony\Component\HttpFoundation\HeaderBag {#49}
      #content: null
      #languages: null
      #charsets: null
      #encodings: null
      #acceptableContentTypes: array:1 [
        0 => "*/*"
      ]
      #pathInfo: null
      #requestUri: null
      #baseUrl: null
      #basePath: null
      #method: null
      #format: null
      #session: null
      #locale: null
      #defaultLocale: "en"
      -preferredFormat: null
      -isHostValid: true
      -isForwardedValid: true
      -isSafeContentPreferred: null
      #json: null
      #convertedFiles: null
      #userResolver: null
      #routeResolver: null
      pathInfo: "/"
      requestUri: "/index.php?name=Voting&op=view&id=12"
      baseUrl: "/index.php"
      basePath: ""
      method: "GET"
      format: "html"
    }
    
/var/www/themez/www/index.php
 
require __DIR__.'/../vendor/autoload.php';
 
/*
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request using
| the application's HTTP kernel. Then, we will send the response back
| to this client's browser, allowing them to enjoy our application.
|
*/
 
$app = require_once __DIR__.'/../bootstrap/app.php';
 
$kernel = $app->make(Kernel::class);
 
$response = tap($kernel->handle(
    $request = Request::capture()
))->send();
 
$kernel->terminate($request, $response);
 
Arguments
  1. Illuminate\Http\Request {#43
      +attributes: Symfony\Component\HttpFoundation\ParameterBag {#45}
      +request: Symfony\Component\HttpFoundation\InputBag {#51}
      +query: Symfony\Component\HttpFoundation\InputBag {#51}
      +server: Symfony\Component\HttpFoundation\ServerBag {#47}
      +files: Symfony\Component\HttpFoundation\FileBag {#48}
      +cookies: Symfony\Component\HttpFoundation\InputBag {#46}
      +headers: Symfony\Component\HttpFoundation\HeaderBag {#49}
      #content: null
      #languages: null
      #charsets: null
      #encodings: null
      #acceptableContentTypes: array:1 [
        0 => "*/*"
      ]
      #pathInfo: null
      #requestUri: null
      #baseUrl: null
      #basePath: null
      #method: null
      #format: null
      #session: null
      #locale: null
      #defaultLocale: "en"
      -preferredFormat: null
      -isHostValid: true
      -isForwardedValid: true
      -isSafeContentPreferred: null
      #json: null
      #convertedFiles: null
      #userResolver: null
      #routeResolver: null
      pathInfo: "/"
      requestUri: "/index.php?name=Voting&op=view&id=12"
      baseUrl: "/index.php"
      basePath: ""
      method: "GET"
      format: "html"
    }
    

Environment & details:

Key Value
name
"Voting"
op
"view"
id
"12"
empty
empty
empty
empty
Key Value
PATH
"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin"
UNIQUE_ID
"Zfk-7WKUyoHs-vEK6uZIqgAAAAY"
SCRIPT_URL
"/index.php"
SCRIPT_URI
"http://www.themez.ru/index.php"
PERL5LIB
"/usr/share/awstats/lib:/usr/share/awstats/plugins"
HTTP_ACCEPT
"*/*"
HTTP_USER_AGENT
"claudebot"
HTTP_HOST
"www.themez.ru"
SERVER_SIGNATURE
""
SERVER_SOFTWARE
"Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips SVN/1.7.14 PHP/8.1.22 mod_perl/2.0.10 Perl/v5.16.3"
SERVER_NAME
"www.themez.ru"
SERVER_ADDR
"62.109.21.40"
SERVER_PORT
"80"
REMOTE_ADDR
"54.235.6.60"
DOCUMENT_ROOT
"/var/www/themez/www/"
REQUEST_SCHEME
"http"
CONTEXT_PREFIX
""
CONTEXT_DOCUMENT_ROOT
"/var/www/themez/www/"
SERVER_ADMIN
"root@localhost"
SCRIPT_FILENAME
"/var/www/themez/www/index.php"
REMOTE_PORT
"33870"
GATEWAY_INTERFACE
"CGI/1.1"
SERVER_PROTOCOL
"HTTP/1.1"
REQUEST_METHOD
"GET"
QUERY_STRING
"name=Voting&op=view&id=12"
REQUEST_URI
"/index.php?name=Voting&op=view&id=12"
SCRIPT_NAME
"/index.php"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1710833645.1551
REQUEST_TIME
1710833645
empty
0. Whoops\Handler\PrettyPageHandler