https://oc.qweb.eu/frontend/web/debug/default/view

Log Messages

Info. & Errors 1

Informational and error log messages generated during the execution of the application.

Level Channel Message
ERROR app error while trying to collect executed migrations
[
  "exception" => Doctrine\DBAL\Exception\DriverException {#1740
    -driverException: Doctrine\DBAL\Driver\PDO\Exception {#1973 …}
    #message: "An exception occurred in driver: could not find driver"
    #code: 0
    #file: "/home/ocqweb/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractPostgreSQLDriver.php"
    #line: 102
    -previous: Doctrine\DBAL\Driver\PDO\Exception {#1973 …}
    trace: {
      /home/ocqweb/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractPostgreSQLDriver.php:102 {
        Doctrine\DBAL\Driver\AbstractPostgreSQLDriver->convertException($message, DriverException $exception) …
        › 
        ›     return new DriverException($message, $exception);}
      }
      /home/ocqweb/vendor/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php:182 {
        Doctrine\DBAL\DBALException::wrapException(Driver $driver, Throwable $driverEx, string $msg) …
        › if ($driver instanceof ExceptionConverterDriver && $driverEx instanceof DeprecatedDriverException) {    return $driver->convertException($msg, $driverEx);}
        arguments: {
          $message: "An exception occurred in driver: could not find driver"
          $exception: Doctrine\DBAL\Driver\PDO\Exception {#1973 …}
        }
      }
      /home/ocqweb/vendor/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php:169 {
        Doctrine\DBAL\DBALException::driverException(Driver $driver, Throwable $driverEx) …
        › {    return self::wrapException($driver, $driverEx, 'An exception occurred in driver: ' . $driverEx->getMessage());}
        arguments: {
          $driver: App\Doctrine\DBAL\Driver\PDOPgSql\Driver {#544 …}
          $driverEx: Doctrine\DBAL\Driver\PDO\Exception {#1973 …}
          $msg: "An exception occurred in driver: could not find driver"
        }
      }
      /home/ocqweb/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOPgSql/Driver.php:52 {
        Doctrine\DBAL\Driver\PDOPgSql\Driver->connect(array $params, $username = null, $password = null, array $driverOptions = []) …
        › } catch (PDOException $e) {    throw Exception::driverException($this, $e);}
        arguments: {
          $driver: App\Doctrine\DBAL\Driver\PDOPgSql\Driver {#544 …}
          $driverEx: Doctrine\DBAL\Driver\PDO\Exception {#1973 …}
        }
      }
      /home/ocqweb/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php:412 {
        Doctrine\DBAL\Connection->connect() …
        › 
        › $this->_conn = $this->_driver->connect($this->params, $user, $password, $driverOptions);arguments: {
          $params: [ …12]
          $username: "sdc"
          $password: "sdc"
          $driverOptions: [ …1]
        }
      }
      /home/ocqweb/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php:1952 {
        Doctrine\DBAL\Connection->getWrappedConnection() …
        › {    $this->connect();}
      /home/ocqweb/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php:1290 {
        Doctrine\DBAL\Connection->executeQuery($sql, array $params = [], $types = [], QueryCacheProfile $qcp = null) …
        › 
        › $connection = $this->getWrappedConnection();}
      /home/ocqweb/src/Doctrine/DBAL/Connection.php:66 {
        App\Doctrine\DBAL\Connection->executeQuery($sql, array $params = [], $types = [], QueryCacheProfile $qcp = null) …
        › try {  $stmt = parent::executeQuery($sql, $params, $types, $qcp);} catch (\Exception $e) {
        arguments: {
          $sql: """
            SELECT quote_ident(table_name) AS table_name,\n
                                   table_schema AS schema_name\n
                            FROM   information_schema.tables\n
                            WHERE  table_schema NOT LIKE 'pg\_%'\n
                            AND    table_schema != 'information_schema'\n
                            AND    table_name != 'geometry_columns'\n
                            AND    table_name != 'spatial_ref_sys'\n
                            AND    table_type != 'VIEW'
            """
          $params: []
          $types: []
          $qcp: null
        }
      }
      /home/ocqweb/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php:1042 {
        Doctrine\DBAL\Connection->fetchAllAssociative(string $query, array $params = [], array $types = []): array …
        › $stmt = $this->ensureForwardCompatibilityStatement(    $this->executeQuery($query, $params, $types));
        arguments: {
          $sql: """
            SELECT quote_ident(table_name) AS table_name,\n
                                   table_schema AS schema_name\n
                            FROM   information_schema.tables\n
                            WHERE  table_schema NOT LIKE 'pg\_%'\n
                            AND    table_schema != 'information_schema'\n
                            AND    table_name != 'geometry_columns'\n
                            AND    table_name != 'spatial_ref_sys'\n
                            AND    table_type != 'VIEW'
            """
          $params: []
          $types: []
        }
      }
      /home/ocqweb/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/AbstractSchemaManager.php:225 {
        Doctrine\DBAL\Schema\AbstractSchemaManager->listTableNames() …
        › 
        › $tables     = $this->_conn->fetchAllAssociative($sql);$tableNames = $this->_getPortableTablesList($tables);
        arguments: {
          $query: """
            SELECT quote_ident(table_name) AS table_name,\n
                                   table_schema AS schema_name\n
                            FROM   information_schema.tables\n
                            WHERE  table_schema NOT LIKE 'pg\_%'\n
                            AND    table_schema != 'information_schema'\n
                            AND    table_name != 'geometry_columns'\n
                            AND    table_name != 'spatial_ref_sys'\n
                            AND    table_type != 'VIEW'
            """
        }
      }
      /home/ocqweb/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/AbstractSchemaManager.php:213 {
        Doctrine\DBAL\Schema\AbstractSchemaManager->tablesExist($names) …
        › 
        ›     return count($names) === count(array_intersect($names, array_map('strtolower', $this->listTableNames())));}
      }
      /home/ocqweb/vendor/doctrine/migrations/lib/Doctrine/Migrations/Metadata/Storage/TableMetadataStorage.php:207 {
        Doctrine\Migrations\Metadata\Storage\TableMetadataStorage->isInitialized(): bool …
        › 
        ›     return $this->schemaManager->tablesExist([$this->configuration->getTableName()]);}
        arguments: {
          $names: [ …1]
        }
      }
      /home/ocqweb/vendor/doctrine/migrations/lib/Doctrine/Migrations/Metadata/Storage/TableMetadataStorage.php:86 {
        Doctrine\Migrations\Metadata\Storage\TableMetadataStorage->getExecutedMigrations(): ExecutedMigrationsList …
        › {    if (! $this->isInitialized()) {        return new ExecutedMigrationsList([]);
      }
      /home/ocqweb/vendor/doctrine/doctrine-migrations-bundle/Collector/MigrationsCollector.php:37 {
        Doctrine\Bundle\MigrationsBundle\Collector\MigrationsCollector->collect(Request $request, Response $response, Throwable $exception = null) …
        › try {    $executedMigrations = $metadataStorage->getExecutedMigrations();} catch (Exception $dbalException) {
      }
      /home/ocqweb/vendor/symfony/http-kernel/Profiler/Profiler.php:178 {
        Symfony\Component\HttpKernel\Profiler\Profiler->collect(Request $request, Response $response) …
        › 
        › $collector->collect($request, $response, $e);// we need to clone for sub-requests
        arguments: {
          $request: Symfony\Component\HttpFoundation\Request {#57 …}
          $response: Symfony\Component\HttpFoundation\Response {#1449 …}
          $exception: Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#322 …}
        }
      }
      /home/ocqweb/vendor/symfony/http-kernel/EventListener/ProfilerListener.php:100 {
        Symfony\Component\HttpKernel\EventListener\ProfilerListener->onKernelResponse(FilterResponseEvent $event) …
        › try {    if (!$profile = $this->profiler->collect($request, $event->getResponse(), $exception)) {        return;
        arguments: {
          $request: Symfony\Component\HttpFoundation\Request {#57 …}
          $response: Symfony\Component\HttpFoundation\Response {#1449 …}
          ...: {
            Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#322 …}
          }
        }
      }
      /home/ocqweb/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:126 {
        Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(Event $event, $eventName, EventDispatcherInterface $dispatcher) …
        › 
        › ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);arguments: {
          $event: Symfony\Component\HttpKernel\Event\ExceptionEvent {#324 …}
          $eventName: "kernel.exception"
          $eventDispatcher: Symfony\Component\HttpKernel\Debug\TraceableEventDispatcher {#721 …}
        }
      }
      /home/ocqweb/vendor/symfony/event-dispatcher/EventDispatcher.php:264 {
        Symfony\Component\EventDispatcher\EventDispatcher->doDispatch($listeners, $eventName, Event $event) …
        ›     }    $listener($event, $eventName, $this);}
        arguments: {
          $event: Symfony\Component\HttpKernel\Event\ExceptionEvent {#324 …}
          $eventName: "kernel.exception"
          $dispatcher: Symfony\Component\HttpKernel\Debug\TraceableEventDispatcher {#721 …}
        }
      }
      /home/ocqweb/vendor/symfony/event-dispatcher/EventDispatcher.php:239 {
        Symfony\Component\EventDispatcher\EventDispatcher->callListeners(iterable $listeners, string $eventName, $event) …
        › if ($event instanceof Event) {    $this->doDispatch($listeners, $eventName, $event);arguments: {
          $listeners: [ …8]
          $eventName: "kernel.exception"
          $event: Symfony\Component\HttpKernel\Event\ExceptionEvent {#324 …}
        }
      }
      /home/ocqweb/vendor/symfony/event-dispatcher/EventDispatcher.php:73 {
        Symfony\Component\EventDispatcher\EventDispatcher->dispatch($event) …
        › if ($listeners) {    $this->callListeners($listeners, $eventName, $event);}
        arguments: {
          $listeners: [ …8]
          $eventName: "kernel.exception"
          $event: Symfony\Component\HttpKernel\Event\ExceptionEvent {#324 …}
        }
      }
      /home/ocqweb/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:168 {
        Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch($event) …
        › try {    $this->dispatcher->dispatch($event, $eventName);} finally {
        arguments: {
          $event: Symfony\Component\HttpKernel\Event\ExceptionEvent {#324 …}
          ...: {
            "kernel.exception"
          }
        }
      }
      /home/ocqweb/vendor/symfony/http-kernel/HttpKernel.php:202 {
        Symfony\Component\HttpKernel\HttpKernel->filterResponse(Response $response, Request $request, int $type): Response …
        › 
        › $this->dispatcher->dispatch($event, KernelEvents::RESPONSE);arguments: {
          $event: Symfony\Component\HttpKernel\Event\ResponseEvent {#1447 …}
          ...: {
            "kernel.response"
          }
        }
      }
      /home/ocqweb/vendor/symfony/http-kernel/HttpKernel.php:190 {
        Symfony\Component\HttpKernel\HttpKernel->handleRaw(Request $request, int $type = self::MASTER_REQUEST): Response …
        › 
        ›     return $this->filterResponse($response, $request, $type);}
        arguments: {
          $response: Symfony\Component\HttpFoundation\Response {#1449 …}
          $request: Symfony\Component\HttpFoundation\Request {#57 …}
          $type: 2
        }
      }
      /home/ocqweb/vendor/symfony/http-kernel/HttpKernel.php:81 {
        Symfony\Component\HttpKernel\HttpKernel->handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true) …
        › try {    return $this->handleRaw($request, $type);} catch (\Exception $e) {
        arguments: {
          $request: Symfony\Component\HttpFoundation\Request {#57 …}
          $type: 2
        }
      }
      /home/ocqweb/vendor/symfony/http-kernel/EventListener/ErrorListener.php:60 {
        Symfony\Component\HttpKernel\EventListener\ErrorListener->onKernelException(ExceptionEvent $event, string $eventName = null, EventDispatcherInterface $eventDispatcher = null) …
        › try {    $response = $event->getKernel()->handle($request, HttpKernelInterface::SUB_REQUEST, false);} catch (\Exception $e) {
        arguments: {
          $request: Symfony\Component\HttpFoundation\Request {#57 …}
          $type: 2
          $catch: false
        }
      }
      /home/ocqweb/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:126 {
        Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(Event $event, $eventName, EventDispatcherInterface $dispatcher) …
        › 
        › ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);arguments: {
          $event: Symfony\Component\HttpKernel\Event\ExceptionEvent {#324 …}
          $eventName: "kernel.exception"
          $eventDispatcher: Symfony\Component\HttpKernel\Debug\TraceableEventDispatcher {#721 …}
        }
      }
      /home/ocqweb/vendor/symfony/event-dispatcher/EventDispatcher.php:264 {
        Symfony\Component\EventDispatcher\EventDispatcher->doDispatch($listeners, $eventName, Event $event) …
        ›     }    $listener($event, $eventName, $this);}
        arguments: {
          $event: Symfony\Component\HttpKernel\Event\ExceptionEvent {#324 …}
          $eventName: "kernel.exception"
          $dispatcher: Symfony\Component\HttpKernel\Debug\TraceableEventDispatcher {#721 …}
        }
      }
      /home/ocqweb/vendor/symfony/event-dispatcher/EventDispatcher.php:239 {
        Symfony\Component\EventDispatcher\EventDispatcher->callListeners(iterable $listeners, string $eventName, $event) …
        › if ($event instanceof Event) {    $this->doDispatch($listeners, $eventName, $event);arguments: {
          $listeners: [ …8]
          $eventName: "kernel.exception"
          $event: Symfony\Component\HttpKernel\Event\ExceptionEvent {#324 …}
        }
      }
      /home/ocqweb/vendor/symfony/event-dispatcher/EventDispatcher.php:73 {
        Symfony\Component\EventDispatcher\EventDispatcher->dispatch($event) …
        › if ($listeners) {    $this->callListeners($listeners, $eventName, $event);}
        arguments: {
          $listeners: [ …8]
          $eventName: "kernel.exception"
          $event: Symfony\Component\HttpKernel\Event\ExceptionEvent {#324 …}
        }
      }
      /home/ocqweb/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:168 {
        Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch($event) …
        › try {    $this->dispatcher->dispatch($event, $eventName);} finally {
        arguments: {
          $event: Symfony\Component\HttpKernel\Event\ExceptionEvent {#324 …}
          ...: {
            "kernel.exception"
          }
        }
      }
      /home/ocqweb/vendor/symfony/http-kernel/HttpKernel.php:229 {
        Symfony\Component\HttpKernel\HttpKernel->handleThrowable(Throwable $e, Request $request, int $type): Response …
        › $event = new ExceptionEvent($this, $request, $type, $e);$this->dispatcher->dispatch($event, KernelEvents::EXCEPTION);arguments: {
          $event: Symfony\Component\HttpKernel\Event\ExceptionEvent {#324 …}
          ...: {
            "kernel.exception"
          }
        }
      }
      /home/ocqweb/vendor/symfony/http-kernel/HttpKernel.php:92 {
        Symfony\Component\HttpKernel\HttpKernel->handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true) …
        › 
        ›     return $this->handleThrowable($e, $request, $type);} finally {
        arguments: {
          $e: Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#322 …}
          $request: Symfony\Component\HttpFoundation\Request {#11 …}
          $type: 1
        }
      }
      /home/ocqweb/vendor/symfony/http-kernel/Kernel.php:201 {
        Symfony\Component\HttpKernel\Kernel->handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true) …
        › try {    return $this->getHttpKernel()->handle($request, $type, $catch);} finally {
        arguments: {
          $request: Symfony\Component\HttpFoundation\Request {#11 …}
          $type: 1
          $catch: true
        }
      }
      /home/ocqweb/public_html/index.php:91 {
        › 
        › $response = $kernel->handle($request);$response->send();
        arguments: {
          $request: Symfony\Component\HttpFoundation\Request {#11 …}
        }
      }
    }
  }
]
{
  /home/ocqweb/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractPostgreSQLDriver.php:102 {
    Doctrine\DBAL\Driver\AbstractPostgreSQLDriver->convertException($message, DriverException $exception) …
    › 
    ›     return new DriverException($message, $exception);}
  }
  /home/ocqweb/vendor/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php:182 {
    Doctrine\DBAL\DBALException::wrapException(Driver $driver, Throwable $driverEx, string $msg) …
    › if ($driver instanceof ExceptionConverterDriver && $driverEx instanceof DeprecatedDriverException) {    return $driver->convertException($msg, $driverEx);}
    arguments: {
      $message: "An exception occurred in driver: could not find driver"
      $exception: Doctrine\DBAL\Driver\PDO\Exception {#1973 …}
    }
  }
  /home/ocqweb/vendor/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php:169 {
    Doctrine\DBAL\DBALException::driverException(Driver $driver, Throwable $driverEx) …
    › {    return self::wrapException($driver, $driverEx, 'An exception occurred in driver: ' . $driverEx->getMessage());}
    arguments: {
      $driver: App\Doctrine\DBAL\Driver\PDOPgSql\Driver {#544 …}
      $driverEx: Doctrine\DBAL\Driver\PDO\Exception {#1973 …}
      $msg: "An exception occurred in driver: could not find driver"
    }
  }
  /home/ocqweb/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOPgSql/Driver.php:52 {
    Doctrine\DBAL\Driver\PDOPgSql\Driver->connect(array $params, $username = null, $password = null, array $driverOptions = []) …
    › } catch (PDOException $e) {    throw Exception::driverException($this, $e);}
    arguments: {
      $driver: App\Doctrine\DBAL\Driver\PDOPgSql\Driver {#544 …}
      $driverEx: Doctrine\DBAL\Driver\PDO\Exception {#1973 …}
    }
  }
  /home/ocqweb/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php:412 {
    Doctrine\DBAL\Connection->connect() …
    › 
    › $this->_conn = $this->_driver->connect($this->params, $user, $password, $driverOptions);arguments: {
      $params: [ …12]
      $username: "sdc"
      $password: "sdc"
      $driverOptions: [ …1]
    }
  }
  /home/ocqweb/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php:1952 {
    Doctrine\DBAL\Connection->getWrappedConnection() …
    › {    $this->connect();}
  /home/ocqweb/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php:1290 {
    Doctrine\DBAL\Connection->executeQuery($sql, array $params = [], $types = [], QueryCacheProfile $qcp = null) …
    › 
    › $connection = $this->getWrappedConnection();}
  /home/ocqweb/src/Doctrine/DBAL/Connection.php:66 {
    App\Doctrine\DBAL\Connection->executeQuery($sql, array $params = [], $types = [], QueryCacheProfile $qcp = null) …
    › try {  $stmt = parent::executeQuery($sql, $params, $types, $qcp);} catch (\Exception $e) {
    arguments: {
      $sql: """
        SELECT quote_ident(table_name) AS table_name,\n
                               table_schema AS schema_name\n
                        FROM   information_schema.tables\n
                        WHERE  table_schema NOT LIKE 'pg\_%'\n
                        AND    table_schema != 'information_schema'\n
                        AND    table_name != 'geometry_columns'\n
                        AND    table_name != 'spatial_ref_sys'\n
                        AND    table_type != 'VIEW'
        """
      $params: []
      $types: []
      $qcp: null
    }
  }
  /home/ocqweb/vendor/doctrine/dbal/lib/Doctrine/DBAL/Connection.php:1042 {
    Doctrine\DBAL\Connection->fetchAllAssociative(string $query, array $params = [], array $types = []): array …
    › $stmt = $this->ensureForwardCompatibilityStatement(    $this->executeQuery($query, $params, $types));
    arguments: {
      $sql: """
        SELECT quote_ident(table_name) AS table_name,\n
                               table_schema AS schema_name\n
                        FROM   information_schema.tables\n
                        WHERE  table_schema NOT LIKE 'pg\_%'\n
                        AND    table_schema != 'information_schema'\n
                        AND    table_name != 'geometry_columns'\n
                        AND    table_name != 'spatial_ref_sys'\n
                        AND    table_type != 'VIEW'
        """
      $params: []
      $types: []
    }
  }
  /home/ocqweb/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/AbstractSchemaManager.php:225 {
    Doctrine\DBAL\Schema\AbstractSchemaManager->listTableNames() …
    › 
    › $tables     = $this->_conn->fetchAllAssociative($sql);$tableNames = $this->_getPortableTablesList($tables);
    arguments: {
      $query: """
        SELECT quote_ident(table_name) AS table_name,\n
                               table_schema AS schema_name\n
                        FROM   information_schema.tables\n
                        WHERE  table_schema NOT LIKE 'pg\_%'\n
                        AND    table_schema != 'information_schema'\n
                        AND    table_name != 'geometry_columns'\n
                        AND    table_name != 'spatial_ref_sys'\n
                        AND    table_type != 'VIEW'
        """
    }
  }
  /home/ocqweb/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/AbstractSchemaManager.php:213 {
    Doctrine\DBAL\Schema\AbstractSchemaManager->tablesExist($names) …
    › 
    ›     return count($names) === count(array_intersect($names, array_map('strtolower', $this->listTableNames())));}
  }
  /home/ocqweb/vendor/doctrine/migrations/lib/Doctrine/Migrations/Metadata/Storage/TableMetadataStorage.php:207 {
    Doctrine\Migrations\Metadata\Storage\TableMetadataStorage->isInitialized(): bool …
    › 
    ›     return $this->schemaManager->tablesExist([$this->configuration->getTableName()]);}
    arguments: {
      $names: [ …1]
    }
  }
  /home/ocqweb/vendor/doctrine/migrations/lib/Doctrine/Migrations/Metadata/Storage/TableMetadataStorage.php:86 {
    Doctrine\Migrations\Metadata\Storage\TableMetadataStorage->getExecutedMigrations(): ExecutedMigrationsList …
    › {    if (! $this->isInitialized()) {        return new ExecutedMigrationsList([]);
  }
  /home/ocqweb/vendor/doctrine/doctrine-migrations-bundle/Collector/MigrationsCollector.php:37 {
    Doctrine\Bundle\MigrationsBundle\Collector\MigrationsCollector->collect(Request $request, Response $response, Throwable $exception = null) …
    › try {    $executedMigrations = $metadataStorage->getExecutedMigrations();} catch (Exception $dbalException) {
  }
  /home/ocqweb/vendor/symfony/http-kernel/Profiler/Profiler.php:178 {
    Symfony\Component\HttpKernel\Profiler\Profiler->collect(Request $request, Response $response) …
    › 
    › $collector->collect($request, $response, $e);// we need to clone for sub-requests
    arguments: {
      $request: Symfony\Component\HttpFoundation\Request {#57 …}
      $response: Symfony\Component\HttpFoundation\Response {#1449 …}
      $exception: Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#322 …}
    }
  }
  /home/ocqweb/vendor/symfony/http-kernel/EventListener/ProfilerListener.php:100 {
    Symfony\Component\HttpKernel\EventListener\ProfilerListener->onKernelResponse(FilterResponseEvent $event) …
    › try {    if (!$profile = $this->profiler->collect($request, $event->getResponse(), $exception)) {        return;
    arguments: {
      $request: Symfony\Component\HttpFoundation\Request {#57 …}
      $response: Symfony\Component\HttpFoundation\Response {#1449 …}
      ...: {
        Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#322 …}
      }
    }
  }
  /home/ocqweb/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:126 {
    Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(Event $event, $eventName, EventDispatcherInterface $dispatcher) …
    › 
    › ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);arguments: {
      $event: Symfony\Component\HttpKernel\Event\ExceptionEvent {#324 …}
      $eventName: "kernel.exception"
      $eventDispatcher: Symfony\Component\HttpKernel\Debug\TraceableEventDispatcher {#721 …}
    }
  }
  /home/ocqweb/vendor/symfony/event-dispatcher/EventDispatcher.php:264 {
    Symfony\Component\EventDispatcher\EventDispatcher->doDispatch($listeners, $eventName, Event $event) …
    ›     }    $listener($event, $eventName, $this);}
    arguments: {
      $event: Symfony\Component\HttpKernel\Event\ExceptionEvent {#324 …}
      $eventName: "kernel.exception"
      $dispatcher: Symfony\Component\HttpKernel\Debug\TraceableEventDispatcher {#721 …}
    }
  }
  /home/ocqweb/vendor/symfony/event-dispatcher/EventDispatcher.php:239 {
    Symfony\Component\EventDispatcher\EventDispatcher->callListeners(iterable $listeners, string $eventName, $event) …
    › if ($event instanceof Event) {    $this->doDispatch($listeners, $eventName, $event);arguments: {
      $listeners: [ …8]
      $eventName: "kernel.exception"
      $event: Symfony\Component\HttpKernel\Event\ExceptionEvent {#324 …}
    }
  }
  /home/ocqweb/vendor/symfony/event-dispatcher/EventDispatcher.php:73 {
    Symfony\Component\EventDispatcher\EventDispatcher->dispatch($event) …
    › if ($listeners) {    $this->callListeners($listeners, $eventName, $event);}
    arguments: {
      $listeners: [ …8]
      $eventName: "kernel.exception"
      $event: Symfony\Component\HttpKernel\Event\ExceptionEvent {#324 …}
    }
  }
  /home/ocqweb/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:168 {
    Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch($event) …
    › try {    $this->dispatcher->dispatch($event, $eventName);} finally {
    arguments: {
      $event: Symfony\Component\HttpKernel\Event\ExceptionEvent {#324 …}
      ...: {
        "kernel.exception"
      }
    }
  }
  /home/ocqweb/vendor/symfony/http-kernel/HttpKernel.php:202 {
    Symfony\Component\HttpKernel\HttpKernel->filterResponse(Response $response, Request $request, int $type): Response …
    › 
    › $this->dispatcher->dispatch($event, KernelEvents::RESPONSE);arguments: {
      $event: Symfony\Component\HttpKernel\Event\ResponseEvent {#1447 …}
      ...: {
        "kernel.response"
      }
    }
  }
  /home/ocqweb/vendor/symfony/http-kernel/HttpKernel.php:190 {
    Symfony\Component\HttpKernel\HttpKernel->handleRaw(Request $request, int $type = self::MASTER_REQUEST): Response …
    › 
    ›     return $this->filterResponse($response, $request, $type);}
    arguments: {
      $response: Symfony\Component\HttpFoundation\Response {#1449 …}
      $request: Symfony\Component\HttpFoundation\Request {#57 …}
      $type: 2
    }
  }
  /home/ocqweb/vendor/symfony/http-kernel/HttpKernel.php:81 {
    Symfony\Component\HttpKernel\HttpKernel->handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true) …
    › try {    return $this->handleRaw($request, $type);} catch (\Exception $e) {
    arguments: {
      $request: Symfony\Component\HttpFoundation\Request {#57 …}
      $type: 2
    }
  }
  /home/ocqweb/vendor/symfony/http-kernel/EventListener/ErrorListener.php:60 {
    Symfony\Component\HttpKernel\EventListener\ErrorListener->onKernelException(ExceptionEvent $event, string $eventName = null, EventDispatcherInterface $eventDispatcher = null) …
    › try {    $response = $event->getKernel()->handle($request, HttpKernelInterface::SUB_REQUEST, false);} catch (\Exception $e) {
    arguments: {
      $request: Symfony\Component\HttpFoundation\Request {#57 …}
      $type: 2
      $catch: false
    }
  }
  /home/ocqweb/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:126 {
    Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(Event $event, $eventName, EventDispatcherInterface $dispatcher) …
    › 
    › ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);arguments: {
      $event: Symfony\Component\HttpKernel\Event\ExceptionEvent {#324 …}
      $eventName: "kernel.exception"
      $eventDispatcher: Symfony\Component\HttpKernel\Debug\TraceableEventDispatcher {#721 …}
    }
  }
  /home/ocqweb/vendor/symfony/event-dispatcher/EventDispatcher.php:264 {
    Symfony\Component\EventDispatcher\EventDispatcher->doDispatch($listeners, $eventName, Event $event) …
    ›     }    $listener($event, $eventName, $this);}
    arguments: {
      $event: Symfony\Component\HttpKernel\Event\ExceptionEvent {#324 …}
      $eventName: "kernel.exception"
      $dispatcher: Symfony\Component\HttpKernel\Debug\TraceableEventDispatcher {#721 …}
    }
  }
  /home/ocqweb/vendor/symfony/event-dispatcher/EventDispatcher.php:239 {
    Symfony\Component\EventDispatcher\EventDispatcher->callListeners(iterable $listeners, string $eventName, $event) …
    › if ($event instanceof Event) {    $this->doDispatch($listeners, $eventName, $event);arguments: {
      $listeners: [ …8]
      $eventName: "kernel.exception"
      $event: Symfony\Component\HttpKernel\Event\ExceptionEvent {#324 …}
    }
  }
  /home/ocqweb/vendor/symfony/event-dispatcher/EventDispatcher.php:73 {
    Symfony\Component\EventDispatcher\EventDispatcher->dispatch($event) …
    › if ($listeners) {    $this->callListeners($listeners, $eventName, $event);}
    arguments: {
      $listeners: [ …8]
      $eventName: "kernel.exception"
      $event: Symfony\Component\HttpKernel\Event\ExceptionEvent {#324 …}
    }
  }
  /home/ocqweb/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:168 {
    Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch($event) …
    › try {    $this->dispatcher->dispatch($event, $eventName);} finally {
    arguments: {
      $event: Symfony\Component\HttpKernel\Event\ExceptionEvent {#324 …}
      ...: {
        "kernel.exception"
      }
    }
  }
  /home/ocqweb/vendor/symfony/http-kernel/HttpKernel.php:229 {
    Symfony\Component\HttpKernel\HttpKernel->handleThrowable(Throwable $e, Request $request, int $type): Response …
    › $event = new ExceptionEvent($this, $request, $type, $e);$this->dispatcher->dispatch($event, KernelEvents::EXCEPTION);arguments: {
      $event: Symfony\Component\HttpKernel\Event\ExceptionEvent {#324 …}
      ...: {
        "kernel.exception"
      }
    }
  }
  /home/ocqweb/vendor/symfony/http-kernel/HttpKernel.php:92 {
    Symfony\Component\HttpKernel\HttpKernel->handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true) …
    › 
    ›     return $this->handleThrowable($e, $request, $type);} finally {
    arguments: {
      $e: Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#322 …}
      $request: Symfony\Component\HttpFoundation\Request {#11 …}
      $type: 1
    }
  }
  /home/ocqweb/vendor/symfony/http-kernel/Kernel.php:201 {
    Symfony\Component\HttpKernel\Kernel->handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true) …
    › try {    return $this->getHttpKernel()->handle($request, $type, $catch);} finally {
    arguments: {
      $request: Symfony\Component\HttpFoundation\Request {#11 …}
      $type: 1
      $catch: true
    }
  }
  /home/ocqweb/public_html/index.php:91 {
    › 
    › $response = $kernel->handle($request);$response->send();
    arguments: {
      $request: Symfony\Component\HttpFoundation\Request {#11 …}
    }
  }
}

Deprecations 13

Log messages generated by using features marked as deprecated.

Time Channel Message
n/a The "Doctrine\DBAL\Statement::__construct()" method is considered internal The statement can be only instantiated by {@link Connection}. It may change without further notice. You should not extend it from "App\Doctrine\DBAL\Statement".
[
  "exception" => Symfony\Component\ErrorHandler\Exception\SilencedErrorContext {#1954
    +count: 1
    -severity: E_USER_DEPRECATED
    trace: {
      /home/ocqweb/vendor/symfony/error-handler/DebugClassLoader.php:392 {
        spl_autoload_call($class_name) …
        › foreach ($deprecations as $message) {    @trigger_error($message, \E_USER_DEPRECATED);}
      }
      spl_autoload_call() {}
    }
  }
]
{
  /home/ocqweb/vendor/symfony/error-handler/DebugClassLoader.php:392 {
    spl_autoload_call($class_name) …
    › foreach ($deprecations as $message) {    @trigger_error($message, \E_USER_DEPRECATED);}
  }
  spl_autoload_call() {}
}
n/a The "App\Handlers\Servizio\DefaultHandler::execute()" method will require a new "Ente $ente" argument in the next major version of its interface "App\Handlers\Servizio\ServizioHandlerInterface", not defining it is deprecated.
n/a The "App\Handlers\Servizio\DefaultAnonymousHandler::execute()" method will require a new "Ente $ente" argument in the next major version of its interface "App\Handlers\Servizio\ServizioHandlerInterface", not defining it is deprecated.
[
  "exception" => Symfony\Component\ErrorHandler\Exception\SilencedErrorContext {#1956
    +count: 1
    -severity: E_USER_DEPRECATED
    trace: {
      /home/ocqweb/vendor/symfony/error-handler/DebugClassLoader.php:392 {
        spl_autoload_call($class_name) …
        › foreach ($deprecations as $message) {    @trigger_error($message, \E_USER_DEPRECATED);}
      }
      spl_autoload_call() {}
    }
  }
]
{
  /home/ocqweb/vendor/symfony/error-handler/DebugClassLoader.php:392 {
    spl_autoload_call($class_name) …
    › foreach ($deprecations as $message) {    @trigger_error($message, \E_USER_DEPRECATED);}
  }
  spl_autoload_call() {}
}
n/a The "App\Handlers\Servizio\DefaultLoggedInHandler::execute()" method will require a new "Ente $ente" argument in the next major version of its interface "App\Handlers\Servizio\ServizioHandlerInterface", not defining it is deprecated.
[
  "exception" => Symfony\Component\ErrorHandler\Exception\SilencedErrorContext {#2186
    +count: 1
    -severity: E_USER_DEPRECATED
    trace: {
      /home/ocqweb/vendor/symfony/error-handler/DebugClassLoader.php:392 {
        spl_autoload_call($class_name) …
        › foreach ($deprecations as $message) {    @trigger_error($message, \E_USER_DEPRECATED);}
      }
      spl_autoload_call() {}
    }
  }
]
{
  /home/ocqweb/vendor/symfony/error-handler/DebugClassLoader.php:392 {
    spl_autoload_call($class_name) …
    › foreach ($deprecations as $message) {    @trigger_error($message, \E_USER_DEPRECATED);}
  }
  spl_autoload_call() {}
}
n/a The "App\Handlers\Servizio\ImisHandler::execute()" method will require a new "Ente $ente" argument in the next major version of its interface "App\Handlers\Servizio\ServizioHandlerInterface", not defining it is deprecated.
[
  "exception" => Symfony\Component\ErrorHandler\Exception\SilencedErrorContext {#2183
    +count: 1
    -severity: E_USER_DEPRECATED
    trace: {
      /home/ocqweb/vendor/symfony/error-handler/DebugClassLoader.php:392 {
        spl_autoload_call($class_name) …
        › foreach ($deprecations as $message) {    @trigger_error($message, \E_USER_DEPRECATED);}
      }
      spl_autoload_call() {}
    }
  }
]
{
  /home/ocqweb/vendor/symfony/error-handler/DebugClassLoader.php:392 {
    spl_autoload_call($class_name) …
    › foreach ($deprecations as $message) {    @trigger_error($message, \E_USER_DEPRECATED);}
  }
  spl_autoload_call() {}
}
n/a The "Symfony\Component\Validator\Constraint::__get()" method is considered internal this method should not be used or overwritten in userland code. It may change without further notice. You should not extend it from "App\Validator\Constraints\ExpressionBasedFormIOConstraint".
[
  "exception" => Symfony\Component\ErrorHandler\Exception\SilencedErrorContext {#2179
    +count: 1
    -severity: E_USER_DEPRECATED
    trace: {
      /home/ocqweb/vendor/symfony/error-handler/DebugClassLoader.php:392 {
        spl_autoload_call($class_name) …
        › foreach ($deprecations as $message) {    @trigger_error($message, \E_USER_DEPRECATED);}
      }
      spl_autoload_call() {}
    }
  }
]
{
  /home/ocqweb/vendor/symfony/error-handler/DebugClassLoader.php:392 {
    spl_autoload_call($class_name) …
    › foreach ($deprecations as $message) {    @trigger_error($message, \E_USER_DEPRECATED);}
  }
  spl_autoload_call() {}
}
n/a The "Symfony\Component\Validator\Constraint::__get()" method is considered internal this method should not be used or overwritten in userland code. It may change without further notice. You should not extend it from "App\Validator\Constraints\ServerSideFormIOConstraint".
[
  "exception" => Symfony\Component\ErrorHandler\Exception\SilencedErrorContext {#2177
    +count: 1
    -severity: E_USER_DEPRECATED
    trace: {
      /home/ocqweb/vendor/symfony/error-handler/DebugClassLoader.php:392 {
        spl_autoload_call($class_name) …
        › foreach ($deprecations as $message) {    @trigger_error($message, \E_USER_DEPRECATED);}
      }
      spl_autoload_call() {}
    }
  }
]
{
  /home/ocqweb/vendor/symfony/error-handler/DebugClassLoader.php:392 {
    spl_autoload_call($class_name) …
    › foreach ($deprecations as $message) {    @trigger_error($message, \E_USER_DEPRECATED);}
  }
  spl_autoload_call() {}
}
n/a The "Symfony\Component\Security\Http\Firewall\UsernamePasswordJsonAuthenticationListener" class is considered final since Symfony 4.3. It may change without further notice as of its next major version. You should not extend it from "Anyx\LoginGateBundle\Security\UsernamePasswordJsonAuthenticationListener".
[
  "exception" => Symfony\Component\ErrorHandler\Exception\SilencedErrorContext {#2175
    +count: 1
    -severity: E_USER_DEPRECATED
    trace: {
      /home/ocqweb/vendor/symfony/error-handler/DebugClassLoader.php:392 {
        spl_autoload_call($class_name) …
        › foreach ($deprecations as $message) {    @trigger_error($message, \E_USER_DEPRECATED);}
      }
      spl_autoload_call() {}
    }
  }
]
{
  /home/ocqweb/vendor/symfony/error-handler/DebugClassLoader.php:392 {
    spl_autoload_call($class_name) …
    › foreach ($deprecations as $message) {    @trigger_error($message, \E_USER_DEPRECATED);}
  }
  spl_autoload_call() {}
}
n/a The "Sensio\Bundle\FrameworkExtraBundle\Configuration\Method" annotation is deprecated since version 5.2. Use "Symfony\Component\Routing\Annotation\Route" instead.
n/a Twig Filter "transchoice" is deprecated since version 4.2. Use "trans" with parameter "%count%" instead in /home/ocqweb/templates/Default/search.html.twig at line 105.
n/a Twig Filter "transchoice" is deprecated since version 4.2. Use "trans" with parameter "%count%" instead in /home/ocqweb/templates/Pratiche/detail.html.twig at line 130.
n/a Twig Filter "transchoice" is deprecated since version 4.2. Use "trans" with parameter "%count%" instead in /home/ocqweb/templates/Servizi/serviceGroupDetail.html.twig at line 201.
n/a Twig Filter "transchoice" is deprecated since version 4.2. Use "trans" with parameter "%count%" instead in /home/ocqweb/templates/Servizi/serviziDetail.html.twig at line 227.

Debug 51

Unimportant log messages generated during the execution of the application.

Time Channel Message
event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
[
  "event" => "kernel.request"
  "listener" => "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure"
]
event Notified event "kernel.request" to listener "Artprima\PrometheusMetricsBundle\EventListener\MetricsCollectorListener::onKernelRequestPre".
[
  "event" => "kernel.request"
  "listener" => "Artprima\PrometheusMetricsBundle\EventListener\MetricsCollectorListener::onKernelRequestPre"
]
event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
[
  "event" => "kernel.request"
  "listener" => "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest"
]
event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
[
  "event" => "kernel.request"
  "listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest"
]
event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
[
  "event" => "kernel.request"
  "listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale"
]
event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\FormatListener::onKernelRequest".
[
  "event" => "kernel.request"
  "listener" => "FOS\RestBundle\EventListener\FormatListener::onKernelRequest"
]
event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\VersionListener::onKernelRequest".
[
  "event" => "kernel.request"
  "listener" => "FOS\RestBundle\EventListener\VersionListener::onKernelRequest"
]
event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
[
  "event" => "kernel.request"
  "listener" => "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest"
]
event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\VersionExclusionListener::onKernelRequest".
[
  "event" => "kernel.request"
  "listener" => "FOS\RestBundle\EventListener\VersionExclusionListener::onKernelRequest"
]
event Notified event "kernel.request" to listener "Symfony\Bundle\FrameworkBundle\EventListener\ResolveControllerNameSubscriber::resolveControllerName".
[
  "event" => "kernel.request"
  "listener" => "Symfony\Bundle\FrameworkBundle\EventListener\ResolveControllerNameSubscriber::resolveControllerName"
]
event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
[
  "event" => "kernel.request"
  "listener" => "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest"
]
event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
[
  "event" => "kernel.request"
  "listener" => "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest"
]
event Notified event "kernel.request" to listener "FOS\RestBundle\EventListener\BodyListener::onKernelRequest".
[
  "event" => "kernel.request"
  "listener" => "FOS\RestBundle\EventListener\BodyListener::onKernelRequest"
]
event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
[
  "event" => "kernel.request"
  "listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator"
]
event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
[
  "event" => "kernel.request"
  "listener" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest"
]
event Notified event "kernel.request" to listener "Artprima\PrometheusMetricsBundle\EventListener\MetricsCollectorListener::onKernelRequest".
[
  "event" => "kernel.request"
  "listener" => "Artprima\PrometheusMetricsBundle\EventListener\MetricsCollectorListener::onKernelRequest"
]
event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LocaleListener::onKernelRequest".
[
  "event" => "kernel.request"
  "listener" => "Stof\DoctrineExtensionsBundle\EventListener\LocaleListener::onKernelRequest"
]
event Notified event "kernel.request" to listener "App\EventListener\TermsAcceptListener::onKernelRequest".
[
  "event" => "kernel.request"
  "listener" => "App\EventListener\TermsAcceptListener::onKernelRequest"
]
event Notified event "kernel.request" to listener "App\EventListener\LocaleApiListener::onKernelRequest".
[
  "event" => "kernel.request"
  "listener" => "App\EventListener\LocaleApiListener::onKernelRequest"
]
event Notified event "kernel.request" to listener "App\EventListener\CompleteProfileListener::onKernelRequest".
[
  "event" => "kernel.request"
  "listener" => "App\EventListener\CompleteProfileListener::onKernelRequest"
]
event Notified event "kernel.request" to listener "App\EventListener\LocaleRewriteListener::onKernelRequest".
[
  "event" => "kernel.request"
  "listener" => "App\EventListener\LocaleRewriteListener::onKernelRequest"
]
event Notified event "kernel.controller" to listener "FOS\RestBundle\EventListener\ParamFetcherListener::onKernelController".
[
  "event" => "kernel.controller"
  "listener" => "FOS\RestBundle\EventListener\ParamFetcherListener::onKernelController"
]
event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
[
  "event" => "kernel.controller"
  "listener" => "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController"
]
event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
[
  "event" => "kernel.controller"
  "listener" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController"
]
event Notified event "kernel.controller" to listener "Flagception\Bundle\FlagceptionBundle\Listener\RoutingMetadataSubscriber::onKernelController".
[
  "event" => "kernel.controller"
  "listener" => "Flagception\Bundle\FlagceptionBundle\Listener\RoutingMetadataSubscriber::onKernelController"
]
event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
[
  "event" => "kernel.controller"
  "listener" => "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController"
]
event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
[
  "event" => "kernel.controller"
  "listener" => "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController"
]
event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
[
  "event" => "kernel.controller"
  "listener" => "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController"
]
event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
[
  "event" => "kernel.controller"
  "listener" => "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController"
]
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"
]
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"
]
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"
]
event Notified event "kernel.response" to listener "FOS\RestBundle\EventListener\AllowedMethodsListener::onKernelResponse".
[
  "event" => "kernel.response"
  "listener" => "FOS\RestBundle\EventListener\AllowedMethodsListener::onKernelResponse"
]
event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
[
  "event" => "kernel.response"
  "listener" => "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse"
]
event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse".
[
  "event" => "kernel.response"
  "listener" => "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse"
]
event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
[
  "event" => "kernel.response"
  "listener" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse"
]
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"
]
event Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse".
[
  "event" => "kernel.response"
  "listener" => "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse"
]
event Notified event "kernel.response" to listener "App\EventListener\LocaleApiListener::onKernelResponse".
[
  "event" => "kernel.response"
  "listener" => "App\EventListener\LocaleApiListener::onKernelResponse"
]
event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
[
  "event" => "kernel.response"
  "listener" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse"
]
event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
[
  "event" => "kernel.response"
  "listener" => "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse"
]
event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
[
  "event" => "kernel.response"
  "listener" => "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse"
]
event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
[
  "event" => "kernel.response"
  "listener" => "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse"
]
event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse".
[
  "event" => "kernel.response"
  "listener" => "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse"
]
event Notified event "kernel.response" to listener "App\EventListener\ResponseListener::onKernelResponse".
[
  "event" => "kernel.response"
  "listener" => "App\EventListener\ResponseListener::onKernelResponse"
]
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"
]
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"
]
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"
]
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"
]
event Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets".
[
  "event" => "kernel.finish_request"
  "listener" => "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets"
]
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"
]

PHP Notices 0

Log messages generated by PHP notices silenced with the @ operator.

There are no log messages of this level.

Container 2753

Log messages generated during the compilation of the service container.

Class Messages
Symfony\Component\DependencyInjection\Compiler\ResolveChildDefinitionsPass
  • Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\AdministratorCreateCommand" (parent: .abstract.instanceof.App\Command\AdministratorCreateCommand).
  • Resolving inheritance for "App\Command\AdministratorCreateCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.App\Command\AdministratorCreateCommand).
  • Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\ChangeApplicationStatusCommand" (parent: .abstract.instanceof.App\Command\ChangeApplicationStatusCommand).
  • Resolving inheritance for "App\Command\ChangeApplicationStatusCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.App\Command\ChangeApplicationStatusCommand).
  • Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\ConfigureInstanceCommand" (parent: .abstract.instanceof.App\Command\ConfigureInstanceCommand).
  • Resolving inheritance for "App\Command\ConfigureInstanceCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.App\Command\ConfigureInstanceCommand).
  • Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\CreateSubscriptionPaymentDraftsCommand" (parent: .abstract.instanceof.App\Command\CreateSubscriptionPaymentDraftsCommand).
  • Resolving inheritance for "App\Command\CreateSubscriptionPaymentDraftsCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.App\Command\CreateSubscriptionPaymentDraftsCommand).
  • Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\DeleteDraftMeetingsCommand" (parent: .abstract.instanceof.App\Command\DeleteDraftMeetingsCommand).
  • Resolving inheritance for "App\Command\DeleteDraftMeetingsCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.App\Command\DeleteDraftMeetingsCommand).
  • Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\FixPeoPaymentSettingsCommand" (parent: .abstract.instanceof.App\Command\FixPeoPaymentSettingsCommand).
  • Resolving inheritance for "App\Command\FixPeoPaymentSettingsCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.App\Command\FixPeoPaymentSettingsCommand).
  • Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\FixPrivacyAndCategoriesCommand" (parent: .abstract.instanceof.App\Command\FixPrivacyAndCategoriesCommand).
  • Resolving inheritance for "App\Command\FixPrivacyAndCategoriesCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.App\Command\FixPrivacyAndCategoriesCommand).
  • Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\FixUserPlaceOfBirthAsCodeCommand" (parent: .abstract.instanceof.App\Command\FixUserPlaceOfBirthAsCodeCommand).
  • Resolving inheritance for "App\Command\FixUserPlaceOfBirthAsCodeCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.App\Command\FixUserPlaceOfBirthAsCodeCommand).
  • Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\GeneratePdfCommand" (parent: .abstract.instanceof.App\Command\GeneratePdfCommand).
  • Resolving inheritance for "App\Command\GeneratePdfCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.App\Command\GeneratePdfCommand).
  • Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\HotFixI18nSyncCommand" (parent: .abstract.instanceof.App\Command\HotFixI18nSyncCommand).
  • Resolving inheritance for "App\Command\HotFixI18nSyncCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.App\Command\HotFixI18nSyncCommand).
  • Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\HotFixMigratePaymentTypeCommand" (parent: .abstract.instanceof.App\Command\HotFixMigratePaymentTypeCommand).
  • Resolving inheritance for "App\Command\HotFixMigratePaymentTypeCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.App\Command\HotFixMigratePaymentTypeCommand).
  • Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\HotFixMissingErogatoreCommand" (parent: .abstract.instanceof.App\Command\HotFixMissingErogatoreCommand).
  • Resolving inheritance for "App\Command\HotFixMissingErogatoreCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.App\Command\HotFixMissingErogatoreCommand).
  • Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\HotFixStatusConsistencyCommand" (parent: .abstract.instanceof.App\Command\HotFixStatusConsistencyCommand).
  • Resolving inheritance for "App\Command\HotFixStatusConsistencyCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.App\Command\HotFixStatusConsistencyCommand).
  • Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\HotFixSubscriberBirthDateFromFiscalCodeCommand" (parent: .abstract.instanceof.App\Command\HotFixSubscriberBirthDateFromFiscalCodeCommand).
  • Resolving inheritance for "App\Command\HotFixSubscriberBirthDateFromFiscalCodeCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.App\Command\HotFixSubscriberBirthDateFromFiscalCodeCommand).
  • Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\HotFixZeroMeetingQueueCommand" (parent: .abstract.instanceof.App\Command\HotFixZeroMeetingQueueCommand).
  • Resolving inheritance for "App\Command\HotFixZeroMeetingQueueCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.App\Command\HotFixZeroMeetingQueueCommand).
  • Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\I18nMigrationsCommand" (parent: .abstract.instanceof.App\Command\I18nMigrationsCommand).
  • Resolving inheritance for "App\Command\I18nMigrationsCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.App\Command\I18nMigrationsCommand).
  • Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\OperatoreAbilitaServizioCommand" (parent: .abstract.instanceof.App\Command\OperatoreAbilitaServizioCommand).
  • Resolving inheritance for "App\Command\OperatoreAbilitaServizioCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.App\Command\OperatoreAbilitaServizioCommand).
  • Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\OperatoreCreateCommand" (parent: .abstract.instanceof.App\Command\OperatoreCreateCommand).
  • Resolving inheritance for "App\Command\OperatoreCreateCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.App\Command\OperatoreCreateCommand).
  • Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\PopulateServiceShortDescriptionCommand" (parent: .abstract.instanceof.App\Command\PopulateServiceShortDescriptionCommand).
  • Resolving inheritance for "App\Command\PopulateServiceShortDescriptionCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.App\Command\PopulateServiceShortDescriptionCommand).
  • Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\ProduceKafkaMessagesCommand" (parent: .abstract.instanceof.App\Command\ProduceKafkaMessagesCommand).
  • Resolving inheritance for "App\Command\ProduceKafkaMessagesCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.App\Command\ProduceKafkaMessagesCommand).
  • Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\ProtocolloConfigureCommand" (parent: .abstract.instanceof.App\Command\ProtocolloConfigureCommand).
  • Resolving inheritance for "App\Command\ProtocolloConfigureCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.App\Command\ProtocolloConfigureCommand).
  • Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\RemoveTooManyPdfCommand" (parent: .abstract.instanceof.App\Command\RemoveTooManyPdfCommand).
  • Resolving inheritance for "App\Command\RemoveTooManyPdfCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.App\Command\RemoveTooManyPdfCommand).
  • Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\ScheduledActionCommand" (parent: .abstract.instanceof.App\Command\ScheduledActionCommand).
  • Resolving inheritance for "App\Command\ScheduledActionCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.App\Command\ScheduledActionCommand).
  • Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\SecureUserCommand" (parent: .abstract.instanceof.App\Command\SecureUserCommand).
  • Resolving inheritance for "App\Command\SecureUserCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.App\Command\SecureUserCommand).
  • Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\SendPraticaToGiscomCommand" (parent: .abstract.instanceof.App\Command\SendPraticaToGiscomCommand).
  • Resolving inheritance for "App\Command\SendPraticaToGiscomCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.App\Command\SendPraticaToGiscomCommand).
  • Resolving inheritance for ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\ServizioCreateCommand" (parent: .abstract.instanceof.App\Command\ServizioCreateCommand).
  • Resolving inheritance for "App\Command\ServizioCreateCommand" (parent: .instanceof.Symfony\Component\Console\Command\Command.0.App\Command\ServizioCreateCommand).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\General\MetricsController" (parent: .abstract.instanceof.App\Controller\General\MetricsController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\General\MetricsController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\General\MetricsController).
  • Resolving inheritance for "App\Controller\General\MetricsController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\General\MetricsController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\General\SecurityController" (parent: .abstract.instanceof.App\Controller\General\SecurityController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\General\SecurityController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\General\SecurityController).
  • Resolving inheritance for "App\Controller\General\SecurityController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\General\SecurityController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\APIController" (parent: .abstract.instanceof.App\Controller\Rest\APIController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\APIController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\APIController).
  • Resolving inheritance for "App\Controller\Rest\APIController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\APIController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\ApplicationsAPIController" (parent: .abstract.instanceof.App\Controller\Rest\ApplicationsAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\ApplicationsAPIController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\ApplicationsAPIController).
  • Resolving inheritance for "App\Controller\Rest\ApplicationsAPIController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\ApplicationsAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\CalendarsAPIController" (parent: .abstract.instanceof.App\Controller\Rest\CalendarsAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\CalendarsAPIController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\CalendarsAPIController).
  • Resolving inheritance for "App\Controller\Rest\CalendarsAPIController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\CalendarsAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\CategoriesAPIController" (parent: .abstract.instanceof.App\Controller\Rest\CategoriesAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\CategoriesAPIController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\CategoriesAPIController).
  • Resolving inheritance for "App\Controller\Rest\CategoriesAPIController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\CategoriesAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\DocumentsAPIController" (parent: .abstract.instanceof.App\Controller\Rest\DocumentsAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\DocumentsAPIController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\DocumentsAPIController).
  • Resolving inheritance for "App\Controller\Rest\DocumentsAPIController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\DocumentsAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\FoldersAPIController" (parent: .abstract.instanceof.App\Controller\Rest\FoldersAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\FoldersAPIController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\FoldersAPIController).
  • Resolving inheritance for "App\Controller\Rest\FoldersAPIController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\FoldersAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\GeographicAreasAPIController" (parent: .abstract.instanceof.App\Controller\Rest\GeographicAreasAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\GeographicAreasAPIController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\GeographicAreasAPIController).
  • Resolving inheritance for "App\Controller\Rest\GeographicAreasAPIController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\GeographicAreasAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\GiscomAPIController" (parent: .abstract.instanceof.App\Controller\Rest\GiscomAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\GiscomAPIController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\GiscomAPIController).
  • Resolving inheritance for "App\Controller\Rest\GiscomAPIController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\GiscomAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\MeetingsAPIController" (parent: .abstract.instanceof.App\Controller\Rest\MeetingsAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\MeetingsAPIController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\MeetingsAPIController).
  • Resolving inheritance for "App\Controller\Rest\MeetingsAPIController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\MeetingsAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\MessagesAPIController" (parent: .abstract.instanceof.App\Controller\Rest\MessagesAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\MessagesAPIController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\MessagesAPIController).
  • Resolving inheritance for "App\Controller\Rest\MessagesAPIController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\MessagesAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\PaymentsAPIController" (parent: .abstract.instanceof.App\Controller\Rest\PaymentsAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\PaymentsAPIController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\PaymentsAPIController).
  • Resolving inheritance for "App\Controller\Rest\PaymentsAPIController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\PaymentsAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\PlacesAPIController" (parent: .abstract.instanceof.App\Controller\Rest\PlacesAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\PlacesAPIController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\PlacesAPIController).
  • Resolving inheritance for "App\Controller\Rest\PlacesAPIController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\PlacesAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\RecipientsAPIController" (parent: .abstract.instanceof.App\Controller\Rest\RecipientsAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\RecipientsAPIController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\RecipientsAPIController).
  • Resolving inheritance for "App\Controller\Rest\RecipientsAPIController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\RecipientsAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\ServicesAPIController" (parent: .abstract.instanceof.App\Controller\Rest\ServicesAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\ServicesAPIController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\ServicesAPIController).
  • Resolving inheritance for "App\Controller\Rest\ServicesAPIController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\ServicesAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\ServicesGroupAPIController" (parent: .abstract.instanceof.App\Controller\Rest\ServicesGroupAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\ServicesGroupAPIController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\ServicesGroupAPIController).
  • Resolving inheritance for "App\Controller\Rest\ServicesGroupAPIController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\ServicesGroupAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\SessionAuthAPIController" (parent: .abstract.instanceof.App\Controller\Rest\SessionAuthAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\SessionAuthAPIController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\SessionAuthAPIController).
  • Resolving inheritance for "App\Controller\Rest\SessionAuthAPIController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\SessionAuthAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\StatusAPIController" (parent: .abstract.instanceof.App\Controller\Rest\StatusAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\StatusAPIController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\StatusAPIController).
  • Resolving inheritance for "App\Controller\Rest\StatusAPIController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\StatusAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\SubscribersAPIController" (parent: .abstract.instanceof.App\Controller\Rest\SubscribersAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\SubscribersAPIController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\SubscribersAPIController).
  • Resolving inheritance for "App\Controller\Rest\SubscribersAPIController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\SubscribersAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\SubscriptionServicesAPIController" (parent: .abstract.instanceof.App\Controller\Rest\SubscriptionServicesAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\SubscriptionServicesAPIController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\SubscriptionServicesAPIController).
  • Resolving inheritance for "App\Controller\Rest\SubscriptionServicesAPIController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\SubscriptionServicesAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\SubscriptionsAPIController" (parent: .abstract.instanceof.App\Controller\Rest\SubscriptionsAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\SubscriptionsAPIController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\SubscriptionsAPIController).
  • Resolving inheritance for "App\Controller\Rest\SubscriptionsAPIController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\SubscriptionsAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\TenantAPIController" (parent: .abstract.instanceof.App\Controller\Rest\TenantAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\TenantAPIController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\TenantAPIController).
  • Resolving inheritance for "App\Controller\Rest\TenantAPIController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\TenantAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\UserGroupsAPIController" (parent: .abstract.instanceof.App\Controller\Rest\UserGroupsAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\UserGroupsAPIController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\UserGroupsAPIController).
  • Resolving inheritance for "App\Controller\Rest\UserGroupsAPIController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\UserGroupsAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\UsersAPIController" (parent: .abstract.instanceof.App\Controller\Rest\UsersAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\UsersAPIController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\UsersAPIController).
  • Resolving inheritance for "App\Controller\Rest\UsersAPIController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\UsersAPIController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\AdminController" (parent: .abstract.instanceof.App\Controller\Ui\Backend\AdminController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\AdminController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\AdminController).
  • Resolving inheritance for "App\Controller\Ui\Backend\AdminController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\AdminController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\CalendarsController" (parent: .abstract.instanceof.App\Controller\Ui\Backend\CalendarsController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\CalendarsController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\CalendarsController).
  • Resolving inheritance for "App\Controller\Ui\Backend\CalendarsController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\CalendarsController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\CategoryController" (parent: .abstract.instanceof.App\Controller\Ui\Backend\CategoryController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\CategoryController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\CategoryController).
  • Resolving inheritance for "App\Controller\Ui\Backend\CategoryController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\CategoryController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\GeographicAreaController" (parent: .abstract.instanceof.App\Controller\Ui\Backend\GeographicAreaController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\GeographicAreaController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\GeographicAreaController).
  • Resolving inheritance for "App\Controller\Ui\Backend\GeographicAreaController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\GeographicAreaController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\OperatoriController" (parent: .abstract.instanceof.App\Controller\Ui\Backend\OperatoriController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\OperatoriController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\OperatoriController).
  • Resolving inheritance for "App\Controller\Ui\Backend\OperatoriController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\OperatoriController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\PlaceController" (parent: .abstract.instanceof.App\Controller\Ui\Backend\PlaceController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\PlaceController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\PlaceController).
  • Resolving inheritance for "App\Controller\Ui\Backend\PlaceController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\PlaceController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\RecipientController" (parent: .abstract.instanceof.App\Controller\Ui\Backend\RecipientController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\RecipientController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\RecipientController).
  • Resolving inheritance for "App\Controller\Ui\Backend\RecipientController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\RecipientController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\SecurityController" (parent: .abstract.instanceof.App\Controller\Ui\Backend\SecurityController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\SecurityController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\SecurityController).
  • Resolving inheritance for "App\Controller\Ui\Backend\SecurityController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\SecurityController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\ServiceController" (parent: .abstract.instanceof.App\Controller\Ui\Backend\ServiceController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\ServiceController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\ServiceController).
  • Resolving inheritance for "App\Controller\Ui\Backend\ServiceController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\ServiceController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\ServiceGroupController" (parent: .abstract.instanceof.App\Controller\Ui\Backend\ServiceGroupController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\ServiceGroupController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\ServiceGroupController).
  • Resolving inheritance for "App\Controller\Ui\Backend\ServiceGroupController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\ServiceGroupController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\SubscriberController" (parent: .abstract.instanceof.App\Controller\Ui\Backend\SubscriberController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\SubscriberController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\SubscriberController).
  • Resolving inheritance for "App\Controller\Ui\Backend\SubscriberController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\SubscriberController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\UserGroupController" (parent: .abstract.instanceof.App\Controller\Ui\Backend\UserGroupController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\UserGroupController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\UserGroupController).
  • Resolving inheritance for "App\Controller\Ui\Backend\UserGroupController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\UserGroupController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\WebhookController" (parent: .abstract.instanceof.App\Controller\Ui\Backend\WebhookController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\WebhookController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\WebhookController).
  • Resolving inheritance for "App\Controller\Ui\Backend\WebhookController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\WebhookController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Frontend\AllegatoController" (parent: .abstract.instanceof.App\Controller\Ui\Frontend\AllegatoController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Frontend\AllegatoController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Frontend\AllegatoController).
  • Resolving inheritance for "App\Controller\Ui\Frontend\AllegatoController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Frontend\AllegatoController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Frontend\DefaultController" (parent: .abstract.instanceof.App\Controller\Ui\Frontend\DefaultController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Frontend\DefaultController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Frontend\DefaultController).
  • Resolving inheritance for "App\Controller\Ui\Frontend\DefaultController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Frontend\DefaultController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Frontend\DocumentController" (parent: .abstract.instanceof.App\Controller\Ui\Frontend\DocumentController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Frontend\DocumentController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Frontend\DocumentController).
  • Resolving inheritance for "App\Controller\Ui\Frontend\DocumentController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Frontend\DocumentController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Frontend\PraticheController" (parent: .abstract.instanceof.App\Controller\Ui\Frontend\PraticheController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Frontend\PraticheController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Frontend\PraticheController).
  • Resolving inheritance for "App\Controller\Ui\Frontend\PraticheController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Frontend\PraticheController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Frontend\PrintController" (parent: .abstract.instanceof.App\Controller\Ui\Frontend\PrintController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Frontend\PrintController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Frontend\PrintController).
  • Resolving inheritance for "App\Controller\Ui\Frontend\PrintController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Frontend\PrintController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Frontend\SearchController" (parent: .abstract.instanceof.App\Controller\Ui\Frontend\SearchController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Frontend\SearchController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Frontend\SearchController).
  • Resolving inheritance for "App\Controller\Ui\Frontend\SearchController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Frontend\SearchController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Frontend\ServiziController" (parent: .abstract.instanceof.App\Controller\Ui\Frontend\ServiziController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Frontend\ServiziController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Frontend\ServiziController).
  • Resolving inheritance for "App\Controller\Ui\Frontend\ServiziController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Frontend\ServiziController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Frontend\SubscriptionServicesController" (parent: .abstract.instanceof.App\Controller\Ui\Frontend\SubscriptionServicesController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Frontend\SubscriptionServicesController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Frontend\SubscriptionServicesController).
  • Resolving inheritance for "App\Controller\Ui\Frontend\SubscriptionServicesController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Frontend\SubscriptionServicesController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Frontend\SubscriptionsController" (parent: .abstract.instanceof.App\Controller\Ui\Frontend\SubscriptionsController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Frontend\SubscriptionsController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Frontend\SubscriptionsController).
  • Resolving inheritance for "App\Controller\Ui\Frontend\SubscriptionsController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Frontend\SubscriptionsController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Frontend\TrackingController" (parent: .abstract.instanceof.App\Controller\Ui\Frontend\TrackingController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Frontend\TrackingController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Frontend\TrackingController).
  • Resolving inheritance for "App\Controller\Ui\Frontend\TrackingController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Frontend\TrackingController).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Frontend\UserController" (parent: .abstract.instanceof.App\Controller\Ui\Frontend\UserController).
  • Resolving inheritance for ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Frontend\UserController" (parent: .instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Frontend\UserController).
  • Resolving inheritance for "App\Controller\Ui\Frontend\UserController" (parent: .instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Frontend\UserController).
  • Resolving inheritance for ".instanceof.Doctrine\Bundle\FixturesBundle\ORMFixtureInterface.0.App\DataFixtures\AppFixtures" (parent: .abstract.instanceof.App\DataFixtures\AppFixtures).
  • Resolving inheritance for "App\DataFixtures\AppFixtures" (parent: .instanceof.Doctrine\Bundle\FixturesBundle\ORMFixtureInterface.0.App\DataFixtures\AppFixtures).
  • Resolving inheritance for ".instanceof.Omines\DataTablesBundle\DataTableTypeInterface.0.App\DataTable\PraticaTableType" (parent: .abstract.instanceof.App\DataTable\PraticaTableType).
  • Resolving inheritance for "App\DataTable\PraticaTableType" (parent: .instanceof.Omines\DataTablesBundle\DataTableTypeInterface.0.App\DataTable\PraticaTableType).
  • Resolving inheritance for ".instanceof.Omines\DataTablesBundle\DataTableTypeInterface.0.App\DataTable\ScheduledActionTableType" (parent: .abstract.instanceof.App\DataTable\ScheduledActionTableType).
  • Resolving inheritance for "App\DataTable\ScheduledActionTableType" (parent: .instanceof.Omines\DataTablesBundle\DataTableTypeInterface.0.App\DataTable\ScheduledActionTableType).
  • Resolving inheritance for ".instanceof.Omines\DataTablesBundle\DataTableTypeInterface.0.App\DataTable\ServiceTableType" (parent: .abstract.instanceof.App\DataTable\ServiceTableType).
  • Resolving inheritance for "App\DataTable\ServiceTableType" (parent: .instanceof.Omines\DataTablesBundle\DataTableTypeInterface.0.App\DataTable\ServiceTableType).
  • Resolving inheritance for ".instanceof.Symfony\Component\EventDispatcher\EventSubscriberInterface.0.App\EventListener\GiscomSendPraticaListener" (parent: .abstract.instanceof.App\EventListener\GiscomSendPraticaListener).
  • Resolving inheritance for "App\EventListener\GiscomSendPraticaListener" (parent: .instanceof.Symfony\Component\EventDispatcher\EventSubscriberInterface.0.App\EventListener\GiscomSendPraticaListener).
  • Resolving inheritance for ".instanceof.Symfony\Component\EventDispatcher\EventSubscriberInterface.0.App\EventListener\ProtocolloSuccessSubscriber" (parent: .abstract.instanceof.App\EventListener\ProtocolloSuccessSubscriber).
  • Resolving inheritance for "App\EventListener\ProtocolloSuccessSubscriber" (parent: .instanceof.Symfony\Component\EventDispatcher\EventSubscriberInterface.0.App\EventListener\ProtocolloSuccessSubscriber).
  • Resolving inheritance for ".instanceof.Symfony\Component\EventDispatcher\EventSubscriberInterface.0.App\EventListener\UserSecuritySubscriber" (parent: .abstract.instanceof.App\EventListener\UserSecuritySubscriber).
  • Resolving inheritance for "App\EventListener\UserSecuritySubscriber" (parent: .instanceof.Symfony\Component\EventDispatcher\EventSubscriberInterface.0.App\EventListener\UserSecuritySubscriber).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\AdditionalDataType" (parent: .abstract.instanceof.App\Form\AdditionalDataType).
  • Resolving inheritance for "App\Form\AdditionalDataType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\AdditionalDataType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\CategoryType" (parent: .abstract.instanceof.App\Form\Admin\CategoryType).
  • Resolving inheritance for "App\Form\Admin\CategoryType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\CategoryType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\ContactPointType" (parent: .abstract.instanceof.App\Form\Admin\ContactPointType).
  • Resolving inheritance for "App\Form\Admin\ContactPointType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\ContactPointType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Ente\DefaultProtocolSettingsType" (parent: .abstract.instanceof.App\Form\Admin\Ente\DefaultProtocolSettingsType).
  • Resolving inheritance for "App\Form\Admin\Ente\DefaultProtocolSettingsType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Ente\DefaultProtocolSettingsType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Ente\EnteType" (parent: .abstract.instanceof.App\Form\Admin\Ente\EnteType).
  • Resolving inheritance for "App\Form\Admin\Ente\EnteType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Ente\EnteType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Ente\MailerType" (parent: .abstract.instanceof.App\Form\Admin\Ente\MailerType).
  • Resolving inheritance for "App\Form\Admin\Ente\MailerType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Ente\MailerType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Ente\WebhookType" (parent: .abstract.instanceof.App\Form\Admin\Ente\WebhookType).
  • Resolving inheritance for "App\Form\Admin\Ente\WebhookType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Ente\WebhookType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\GeographicAreaType" (parent: .abstract.instanceof.App\Form\Admin\GeographicAreaType).
  • Resolving inheritance for "App\Form\Admin\GeographicAreaType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\GeographicAreaType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\PlaceType" (parent: .abstract.instanceof.App\Form\Admin\PlaceType).
  • Resolving inheritance for "App\Form\Admin\PlaceType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\PlaceType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\RecipientType" (parent: .abstract.instanceof.App\Form\Admin\RecipientType).
  • Resolving inheritance for "App\Form\Admin\RecipientType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\RecipientType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\ServiceGroup\ServiceGroupType" (parent: .abstract.instanceof.App\Form\Admin\ServiceGroup\ServiceGroupType).
  • Resolving inheritance for "App\Form\Admin\ServiceGroup\ServiceGroupType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\ServiceGroup\ServiceGroupType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Servizio\CardDataType" (parent: .abstract.instanceof.App\Form\Admin\Servizio\CardDataType).
  • Resolving inheritance for "App\Form\Admin\Servizio\CardDataType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Servizio\CardDataType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Servizio\FeedbackMessagesDataType" (parent: .abstract.instanceof.App\Form\Admin\Servizio\FeedbackMessagesDataType).
  • Resolving inheritance for "App\Form\Admin\Servizio\FeedbackMessagesDataType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Servizio\FeedbackMessagesDataType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Servizio\FeedbackMessagesSettingsType" (parent: .abstract.instanceof.App\Form\Admin\Servizio\FeedbackMessagesSettingsType).
  • Resolving inheritance for "App\Form\Admin\Servizio\FeedbackMessagesSettingsType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Servizio\FeedbackMessagesSettingsType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Servizio\FormIOBuilderRenderType" (parent: .abstract.instanceof.App\Form\Admin\Servizio\FormIOBuilderRenderType).
  • Resolving inheritance for "App\Form\Admin\Servizio\FormIOBuilderRenderType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Servizio\FormIOBuilderRenderType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Servizio\FormIOI18nType" (parent: .abstract.instanceof.App\Form\Admin\Servizio\FormIOI18nType).
  • Resolving inheritance for "App\Form\Admin\Servizio\FormIOI18nType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Servizio\FormIOI18nType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Servizio\FormIOTemplateType" (parent: .abstract.instanceof.App\Form\Admin\Servizio\FormIOTemplateType).
  • Resolving inheritance for "App\Form\Admin\Servizio\FormIOTemplateType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Servizio\FormIOTemplateType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Servizio\GeneralDataType" (parent: .abstract.instanceof.App\Form\Admin\Servizio\GeneralDataType).
  • Resolving inheritance for "App\Form\Admin\Servizio\GeneralDataType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Servizio\GeneralDataType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Servizio\IOIntegrationDataType" (parent: .abstract.instanceof.App\Form\Admin\Servizio\IOIntegrationDataType).
  • Resolving inheritance for "App\Form\Admin\Servizio\IOIntegrationDataType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Servizio\IOIntegrationDataType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Servizio\IntegrationsDataType" (parent: .abstract.instanceof.App\Form\Admin\Servizio\IntegrationsDataType).
  • Resolving inheritance for "App\Form\Admin\Servizio\IntegrationsDataType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Servizio\IntegrationsDataType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Servizio\PaymentDataType" (parent: .abstract.instanceof.App\Form\Admin\Servizio\PaymentDataType).
  • Resolving inheritance for "App\Form\Admin\Servizio\PaymentDataType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Servizio\PaymentDataType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Servizio\ProtocolDataType" (parent: .abstract.instanceof.App\Form\Admin\Servizio\ProtocolDataType).
  • Resolving inheritance for "App\Form\Admin\Servizio\ProtocolDataType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Servizio\ProtocolDataType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Servizio\TestType" (parent: .abstract.instanceof.App\Form\Admin\Servizio\TestType).
  • Resolving inheritance for "App\Form\Admin\Servizio\TestType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Servizio\TestType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\UserGroupType" (parent: .abstract.instanceof.App\Form\Admin\UserGroupType).
  • Resolving inheritance for "App\Form\Admin\UserGroupType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\UserGroupType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\AllegatoMeetingType" (parent: .abstract.instanceof.App\Form\AllegatoMeetingType).
  • Resolving inheritance for "App\Form\AllegatoMeetingType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\AllegatoMeetingType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Api\CategoryApiType" (parent: .abstract.instanceof.App\Form\Api\CategoryApiType).
  • Resolving inheritance for "App\Form\Api\CategoryApiType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Api\CategoryApiType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Api\ContactPointApiType" (parent: .abstract.instanceof.App\Form\Api\ContactPointApiType).
  • Resolving inheritance for "App\Form\Api\ContactPointApiType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Api\ContactPointApiType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Api\GeographicAreaApiType" (parent: .abstract.instanceof.App\Form\Api\GeographicAreaApiType).
  • Resolving inheritance for "App\Form\Api\GeographicAreaApiType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Api\GeographicAreaApiType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Api\PlaceApiType" (parent: .abstract.instanceof.App\Form\Api\PlaceApiType).
  • Resolving inheritance for "App\Form\Api\PlaceApiType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Api\PlaceApiType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Api\PostalAddressApiType" (parent: .abstract.instanceof.App\Form\Api\PostalAddressApiType).
  • Resolving inheritance for "App\Form\Api\PostalAddressApiType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Api\PostalAddressApiType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Api\RecipientApiType" (parent: .abstract.instanceof.App\Form\Api\RecipientApiType).
  • Resolving inheritance for "App\Form\Api\RecipientApiType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Api\RecipientApiType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Api\UserGroupApiType" (parent: .abstract.instanceof.App\Form\Api\UserGroupApiType).
  • Resolving inheritance for "App\Form\Api\UserGroupApiType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Api\UserGroupApiType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\ApplicationMessageType" (parent: .abstract.instanceof.App\Form\ApplicationMessageType).
  • Resolving inheritance for "App\Form\ApplicationMessageType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\ApplicationMessageType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\ApplicationType" (parent: .abstract.instanceof.App\Form\ApplicationType).
  • Resolving inheritance for "App\Form\ApplicationType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\ApplicationType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\AzioniOperatore\AllegatoPraticaType" (parent: .abstract.instanceof.App\Form\AzioniOperatore\AllegatoPraticaType).
  • Resolving inheritance for "App\Form\AzioniOperatore\AllegatoPraticaType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\AzioniOperatore\AllegatoPraticaType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\AccettazioneIstruzioniType" (parent: .abstract.instanceof.App\Form\Base\AccettazioneIstruzioniType).
  • Resolving inheritance for "App\Form\Base\AccettazioneIstruzioniType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\AccettazioneIstruzioniType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\AllegatiType" (parent: .abstract.instanceof.App\Form\Base\AllegatiType).
  • Resolving inheritance for "App\Form\Base\AllegatiType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\AllegatiType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\AllegatoType" (parent: .abstract.instanceof.App\Form\Base\AllegatoType).
  • Resolving inheritance for "App\Form\Base\AllegatoType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\AllegatoType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\BlockQuoteType" (parent: .abstract.instanceof.App\Form\Base\BlockQuoteType).
  • Resolving inheritance for "App\Form\Base\BlockQuoteType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\BlockQuoteType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\CertificatoAnagraficoType" (parent: .abstract.instanceof.App\Form\Base\CertificatoAnagraficoType).
  • Resolving inheritance for "App\Form\Base\CertificatoAnagraficoType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\CertificatoAnagraficoType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\ChooseAllegatoType" (parent: .abstract.instanceof.App\Form\Base\ChooseAllegatoType).
  • Resolving inheritance for "App\Form\Base\ChooseAllegatoType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\ChooseAllegatoType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\ComponenteNucleoFamiliareType" (parent: .abstract.instanceof.App\Form\Base\ComponenteNucleoFamiliareType).
  • Resolving inheritance for "App\Form\Base\ComponenteNucleoFamiliareType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\ComponenteNucleoFamiliareType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\DatiRichiedenteType" (parent: .abstract.instanceof.App\Form\Base\DatiRichiedenteType).
  • Resolving inheritance for "App\Form\Base\DatiRichiedenteType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\DatiRichiedenteType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\DatiTecnicoType" (parent: .abstract.instanceof.App\Form\Base\DatiTecnicoType).
  • Resolving inheritance for "App\Form\Base\DatiTecnicoType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\DatiTecnicoType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\DelegaType" (parent: .abstract.instanceof.App\Form\Base\DelegaType).
  • Resolving inheritance for "App\Form\Base\DelegaType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\DelegaType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\MessageType" (parent: .abstract.instanceof.App\Form\Base\MessageType).
  • Resolving inheritance for "App\Form\Base\MessageType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\MessageType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\NucleoFamiliareType" (parent: .abstract.instanceof.App\Form\Base\NucleoFamiliareType).
  • Resolving inheritance for "App\Form\Base\NucleoFamiliareType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\NucleoFamiliareType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\PaymentGatewayType" (parent: .abstract.instanceof.App\Form\Base\PaymentGatewayType).
  • Resolving inheritance for "App\Form\Base\PaymentGatewayType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\PaymentGatewayType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\RecaptchaType" (parent: .abstract.instanceof.App\Form\Base\RecaptchaType).
  • Resolving inheritance for "App\Form\Base\RecaptchaType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\RecaptchaType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\SelectPaymentGatewayType" (parent: .abstract.instanceof.App\Form\Base\SelectPaymentGatewayType).
  • Resolving inheritance for "App\Form\Base\SelectPaymentGatewayType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\SelectPaymentGatewayType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\SelezionaEnteType" (parent: .abstract.instanceof.App\Form\Base\SelezionaEnteType).
  • Resolving inheritance for "App\Form\Base\SelezionaEnteType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\SelezionaEnteType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\SpecificaDelegaType" (parent: .abstract.instanceof.App\Form\Base\SpecificaDelegaType).
  • Resolving inheritance for "App\Form\Base\SpecificaDelegaType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\SpecificaDelegaType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\SummaryType" (parent: .abstract.instanceof.App\Form\Base\SummaryType).
  • Resolving inheritance for "App\Form\Base\SummaryType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\SummaryType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\UploadAllegatoType" (parent: .abstract.instanceof.App\Form\Base\UploadAllegatoType).
  • Resolving inheritance for "App\Form\Base\UploadAllegatoType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\UploadAllegatoType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\UsoType" (parent: .abstract.instanceof.App\Form\Base\UsoType).
  • Resolving inheritance for "App\Form\Base\UsoType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\UsoType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\CalendarBackofficeType" (parent: .abstract.instanceof.App\Form\CalendarBackofficeType).
  • Resolving inheritance for "App\Form\CalendarBackofficeType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\CalendarBackofficeType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\CalendarType" (parent: .abstract.instanceof.App\Form\CalendarType).
  • Resolving inheritance for "App\Form\CalendarType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\CalendarType).
  • Resolving inheritance for "ocsdc.form.flow.pratica" (parent: craue.form.flow).
  • Resolving inheritance for "App\Form\CertificatoMatrimonio\CertificatoMatrimonioFlow" (parent: ocsdc.form.flow.pratica).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\CertificatoMatrimonio\DatiAttoType" (parent: .abstract.instanceof.App\Form\CertificatoMatrimonio\DatiAttoType).
  • Resolving inheritance for "App\Form\CertificatoMatrimonio\DatiAttoType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\CertificatoMatrimonio\DatiAttoType).
  • Resolving inheritance for "App\Form\CertificatoMorte\CertificatoMorteFlow" (parent: ocsdc.form.flow.pratica).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\CertificatoMorte\DatiAttoType" (parent: .abstract.instanceof.App\Form\CertificatoMorte\DatiAttoType).
  • Resolving inheritance for "App\Form\CertificatoMorte\DatiAttoType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\CertificatoMorte\DatiAttoType).
  • Resolving inheritance for "App\Form\CertificatoNascita\CertificatoNascitaFlow" (parent: ocsdc.form.flow.pratica).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\ChangePasswordType" (parent: .abstract.instanceof.App\Form\ChangePasswordType).
  • Resolving inheritance for "App\Form\ChangePasswordType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\ChangePasswordType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\DateTimeIntervalType" (parent: .abstract.instanceof.App\Form\DateTimeIntervalType).
  • Resolving inheritance for "App\Form\DateTimeIntervalType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\DateTimeIntervalType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\DocumentAPIType" (parent: .abstract.instanceof.App\Form\DocumentAPIType).
  • Resolving inheritance for "App\Form\DocumentAPIType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\DocumentAPIType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\EstrattoMatrimonio\DatiAttoType" (parent: .abstract.instanceof.App\Form\EstrattoMatrimonio\DatiAttoType).
  • Resolving inheritance for "App\Form\EstrattoMatrimonio\DatiAttoType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\EstrattoMatrimonio\DatiAttoType).
  • Resolving inheritance for "App\Form\EstrattoMatrimonio\EstrattoMatrimonioFlow" (parent: ocsdc.form.flow.pratica).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\EstrattoMorte\DatiAttoType" (parent: .abstract.instanceof.App\Form\EstrattoMorte\DatiAttoType).
  • Resolving inheritance for "App\Form\EstrattoMorte\DatiAttoType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\EstrattoMorte\DatiAttoType).
  • Resolving inheritance for "App\Form\EstrattoMorte\EstrattoMorteFlow" (parent: ocsdc.form.flow.pratica).
  • Resolving inheritance for "App\Form\EstrattoNascita\EstrattoNascitaFlow" (parent: ocsdc.form.flow.pratica).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeExtensionInterface.0.App\Form\Extension\HelpDataTypeExtension" (parent: .abstract.instanceof.App\Form\Extension\HelpDataTypeExtension).
  • Resolving inheritance for "App\Form\Extension\HelpDataTypeExtension" (parent: .instanceof.Symfony\Component\Form\FormTypeExtensionInterface.0.App\Form\Extension\HelpDataTypeExtension).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\ExternalCalendarType" (parent: .abstract.instanceof.App\Form\ExternalCalendarType).
  • Resolving inheritance for "App\Form\ExternalCalendarType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\ExternalCalendarType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\FeedbackMessageType" (parent: .abstract.instanceof.App\Form\FeedbackMessageType).
  • Resolving inheritance for "App\Form\FeedbackMessageType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\FeedbackMessageType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\FeedbackMessagesFormType" (parent: .abstract.instanceof.App\Form\FeedbackMessagesFormType).
  • Resolving inheritance for "App\Form\FeedbackMessagesFormType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\FeedbackMessagesFormType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\FlowStepType" (parent: .abstract.instanceof.App\Form\FlowStepType).
  • Resolving inheritance for "App\Form\FlowStepType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\FlowStepType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\FolderType" (parent: .abstract.instanceof.App\Form\FolderType).
  • Resolving inheritance for "App\Form\FolderType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\FolderType).
  • Resolving inheritance for "App\Form\FormIO\FormIOFlow" (parent: ocsdc.form.flow.pratica).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\FormIO\FormIORenderType" (parent: .abstract.instanceof.App\Form\FormIO\FormIORenderType).
  • Resolving inheritance for "App\Form\FormIO\FormIORenderType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\FormIO\FormIORenderType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\GatewayType" (parent: .abstract.instanceof.App\Form\GatewayType).
  • Resolving inheritance for "App\Form\GatewayType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\GatewayType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\I18n\I18nJsonType" (parent: .abstract.instanceof.App\Form\I18n\I18nJsonType).
  • Resolving inheritance for "App\Form\I18n\I18nJsonType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\I18n\I18nJsonType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\I18n\I18nTextType" (parent: .abstract.instanceof.App\Form\I18n\I18nTextType).
  • Resolving inheritance for "App\Form\I18n\I18nTextType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\I18n\I18nTextType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\I18n\I18nTextareaType" (parent: .abstract.instanceof.App\Form\I18n\I18nTextareaType).
  • Resolving inheritance for "App\Form\I18n\I18nTextareaType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\I18n\I18nTextareaType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\IOServiceParametersType" (parent: .abstract.instanceof.App\Form\IOServiceParametersType).
  • Resolving inheritance for "App\Form\IOServiceParametersType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\IOServiceParametersType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\IdCardType" (parent: .abstract.instanceof.App\Form\IdCardType).
  • Resolving inheritance for "App\Form\IdCardType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\IdCardType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\IntegrationsType" (parent: .abstract.instanceof.App\Form\IntegrationsType).
  • Resolving inheritance for "App\Form\IntegrationsType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\IntegrationsType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\IscrizioneRegistroAssociazioni\AllegatiType" (parent: .abstract.instanceof.App\Form\IscrizioneRegistroAssociazioni\AllegatiType).
  • Resolving inheritance for "App\Form\IscrizioneRegistroAssociazioni\AllegatiType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\IscrizioneRegistroAssociazioni\AllegatiType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\IscrizioneRegistroAssociazioni\ContributoType" (parent: .abstract.instanceof.App\Form\IscrizioneRegistroAssociazioni\ContributoType).
  • Resolving inheritance for "App\Form\IscrizioneRegistroAssociazioni\ContributoType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\IscrizioneRegistroAssociazioni\ContributoType).
  • Resolving inheritance for ".instanceof.Craue\FormFlowBundle\Form\FormFlowInterface.0.App\Form\IscrizioneRegistroAssociazioni\IscrizioneRegistroAssociazioniFlow" (parent: .abstract.instanceof.App\Form\IscrizioneRegistroAssociazioni\IscrizioneRegistroAssociazioniFlow).
  • Resolving inheritance for "App\Form\IscrizioneRegistroAssociazioni\IscrizioneRegistroAssociazioniFlow" (parent: .instanceof.Craue\FormFlowBundle\Form\FormFlowInterface.0.App\Form\IscrizioneRegistroAssociazioni\IscrizioneRegistroAssociazioniFlow).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\IscrizioneRegistroAssociazioni\OrgRichiedenteType" (parent: .abstract.instanceof.App\Form\IscrizioneRegistroAssociazioni\OrgRichiedenteType).
  • Resolving inheritance for "App\Form\IscrizioneRegistroAssociazioni\OrgRichiedenteType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\IscrizioneRegistroAssociazioni\OrgRichiedenteType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\IscrizioneRegistroAssociazioni\TipologiaAttivitaType" (parent: .abstract.instanceof.App\Form\IscrizioneRegistroAssociazioni\TipologiaAttivitaType).
  • Resolving inheritance for "App\Form\IscrizioneRegistroAssociazioni\TipologiaAttivitaType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\IscrizioneRegistroAssociazioni\TipologiaAttivitaType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\MeetingType" (parent: .abstract.instanceof.App\Form\MeetingType).
  • Resolving inheritance for "App\Form\MeetingType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\MeetingType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\OccupazioneSuoloPubblico\AllegatiType" (parent: .abstract.instanceof.App\Form\OccupazioneSuoloPubblico\AllegatiType).
  • Resolving inheritance for "App\Form\OccupazioneSuoloPubblico\AllegatiType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\OccupazioneSuoloPubblico\AllegatiType).
  • Resolving inheritance for ".instanceof.Symfony\Component\EventDispatcher\EventSubscriberInterface.0.App\Form\OccupazioneSuoloPubblico\ImportoChecker" (parent: .abstract.instanceof.App\Form\OccupazioneSuoloPubblico\ImportoChecker).
  • Resolving inheritance for "App\Form\OccupazioneSuoloPubblico\ImportoChecker" (parent: .instanceof.Symfony\Component\EventDispatcher\EventSubscriberInterface.0.App\Form\OccupazioneSuoloPubblico\ImportoChecker).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\OccupazioneSuoloPubblico\ImportoType" (parent: .abstract.instanceof.App\Form\OccupazioneSuoloPubblico\ImportoType).
  • Resolving inheritance for "App\Form\OccupazioneSuoloPubblico\ImportoType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\OccupazioneSuoloPubblico\ImportoType).
  • Resolving inheritance for ".instanceof.Craue\FormFlowBundle\Form\FormFlowInterface.0.App\Form\OccupazioneSuoloPubblico\OccupazioneSuoloPubblicoFlow" (parent: .abstract.instanceof.App\Form\OccupazioneSuoloPubblico\OccupazioneSuoloPubblicoFlow).
  • Resolving inheritance for "App\Form\OccupazioneSuoloPubblico\OccupazioneSuoloPubblicoFlow" (parent: .instanceof.Craue\FormFlowBundle\Form\FormFlowInterface.0.App\Form\OccupazioneSuoloPubblico\OccupazioneSuoloPubblicoFlow).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\OccupazioneSuoloPubblico\OccupazioneType" (parent: .abstract.instanceof.App\Form\OccupazioneSuoloPubblico\OccupazioneType).
  • Resolving inheritance for "App\Form\OccupazioneSuoloPubblico\OccupazioneType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\OccupazioneSuoloPubblico\OccupazioneType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\OccupazioneSuoloPubblico\OrgRichiedenteType" (parent: .abstract.instanceof.App\Form\OccupazioneSuoloPubblico\OrgRichiedenteType).
  • Resolving inheritance for "App\Form\OccupazioneSuoloPubblico\OrgRichiedenteType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\OccupazioneSuoloPubblico\OrgRichiedenteType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\OccupazioneSuoloPubblico\TempoOccupazioneType" (parent: .abstract.instanceof.App\Form\OccupazioneSuoloPubblico\TempoOccupazioneType).
  • Resolving inheritance for "App\Form\OccupazioneSuoloPubblico\TempoOccupazioneType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\OccupazioneSuoloPubblico\TempoOccupazioneType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\OccupazioneSuoloPubblico\TipologiaOccupazioneType" (parent: .abstract.instanceof.App\Form\OccupazioneSuoloPubblico\TipologiaOccupazioneType).
  • Resolving inheritance for "App\Form\OccupazioneSuoloPubblico\TipologiaOccupazioneType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\OccupazioneSuoloPubblico\TipologiaOccupazioneType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\OpeningHourType" (parent: .abstract.instanceof.App\Form\OpeningHourType).
  • Resolving inheritance for "App\Form\OpeningHourType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\OpeningHourType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Operatore\Base\ApplicationOutcomeType" (parent: .abstract.instanceof.App\Form\Operatore\Base\ApplicationOutcomeType).
  • Resolving inheritance for "App\Form\Operatore\Base\ApplicationOutcomeType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Operatore\Base\ApplicationOutcomeType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Operatore\Base\ApprovaORigettaType" (parent: .abstract.instanceof.App\Form\Operatore\Base\ApprovaORigettaType).
  • Resolving inheritance for "App\Form\Operatore\Base\ApprovaORigettaType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Operatore\Base\ApprovaORigettaType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Operatore\Base\SignedAllegatoType" (parent: .abstract.instanceof.App\Form\Operatore\Base\SignedAllegatoType).
  • Resolving inheritance for "App\Form\Operatore\Base\SignedAllegatoType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Operatore\Base\SignedAllegatoType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Operatore\Base\UploadAllegatoOperatoreType" (parent: .abstract.instanceof.App\Form\Operatore\Base\UploadAllegatoOperatoreType).
  • Resolving inheritance for "App\Form\Operatore\Base\UploadAllegatoOperatoreType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Operatore\Base\UploadAllegatoOperatoreType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Operatore\Base\UploadRispostaOperatoreType" (parent: .abstract.instanceof.App\Form\Operatore\Base\UploadRispostaOperatoreType).
  • Resolving inheritance for "App\Form\Operatore\Base\UploadRispostaOperatoreType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Operatore\Base\UploadRispostaOperatoreType).
  • Resolving inheritance for "ocsdc.form.flow.praticaoperatore" (parent: craue.form.flow).
  • Resolving inheritance for "App\Form\Operatore\CertificatoNascita\CertificatoNascitaOperatoreFlow" (parent: ocsdc.form.flow.praticaoperatore).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Operatore\CertificatoNascita\UploadCertificatoNascitaType" (parent: .abstract.instanceof.App\Form\Operatore\CertificatoNascita\UploadCertificatoNascitaType).
  • Resolving inheritance for "App\Form\Operatore\CertificatoNascita\UploadCertificatoNascitaType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Operatore\CertificatoNascita\UploadCertificatoNascitaType).
  • Resolving inheritance for ".instanceof.Craue\FormFlowBundle\Form\FormFlowInterface.0.App\Form\Operatore\Standard\StandardAllegatoNoFirmaFlow" (parent: .abstract.instanceof.App\Form\Operatore\Standard\StandardAllegatoNoFirmaFlow).
  • Resolving inheritance for "App\Form\Operatore\Standard\StandardAllegatoNoFirmaFlow" (parent: .instanceof.Craue\FormFlowBundle\Form\FormFlowInterface.0.App\Form\Operatore\Standard\StandardAllegatoNoFirmaFlow).
  • Resolving inheritance for ".instanceof.Craue\FormFlowBundle\Form\FormFlowInterface.0.App\Form\Operatore\Standard\StandardOperatoreFlow" (parent: .abstract.instanceof.App\Form\Operatore\Standard\StandardOperatoreFlow).
  • Resolving inheritance for "App\Form\Operatore\Standard\StandardOperatoreFlow" (parent: .instanceof.Craue\FormFlowBundle\Form\FormFlowInterface.0.App\Form\Operatore\Standard\StandardOperatoreFlow).
  • Resolving inheritance for ".instanceof.Craue\FormFlowBundle\Form\FormFlowInterface.0.App\Form\Operatore\Standard\StandardOperatoreWithSignatureFlow" (parent: .abstract.instanceof.App\Form\Operatore\Standard\StandardOperatoreWithSignatureFlow).
  • Resolving inheritance for "App\Form\Operatore\Standard\StandardOperatoreWithSignatureFlow" (parent: .instanceof.Craue\FormFlowBundle\Form\FormFlowInterface.0.App\Form\Operatore\Standard\StandardOperatoreWithSignatureFlow).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\OperatoreUserType" (parent: .abstract.instanceof.App\Form\OperatoreUserType).
  • Resolving inheritance for "App\Form\OperatoreUserType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\OperatoreUserType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\PaymentOutcomeType" (parent: .abstract.instanceof.App\Form\PaymentOutcomeType).
  • Resolving inheritance for "App\Form\PaymentOutcomeType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\PaymentOutcomeType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\PaymentParametersType" (parent: .abstract.instanceof.App\Form\PaymentParametersType).
  • Resolving inheritance for "App\Form\PaymentParametersType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\PaymentParametersType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\ProfileUserType" (parent: .abstract.instanceof.App\Form\ProfileUserType).
  • Resolving inheritance for "App\Form\ProfileUserType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\ProfileUserType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Rest\ApplicationBackofficeFormType" (parent: .abstract.instanceof.App\Form\Rest\ApplicationBackofficeFormType).
  • Resolving inheritance for "App\Form\Rest\ApplicationBackofficeFormType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Rest\ApplicationBackofficeFormType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Rest\ApplicationFormType" (parent: .abstract.instanceof.App\Form\Rest\ApplicationFormType).
  • Resolving inheritance for "App\Form\Rest\ApplicationFormType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Rest\ApplicationFormType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Rest\FileType" (parent: .abstract.instanceof.App\Form\Rest\FileType).
  • Resolving inheritance for "App\Form\Rest\FileType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Rest\FileType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Rest\MessageFormType" (parent: .abstract.instanceof.App\Form\Rest\MessageFormType).
  • Resolving inheritance for "App\Form\Rest\MessageFormType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Rest\MessageFormType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Rest\Transition\OutcomeFormType" (parent: .abstract.instanceof.App\Form\Rest\Transition\OutcomeFormType).
  • Resolving inheritance for "App\Form\Rest\Transition\OutcomeFormType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Rest\Transition\OutcomeFormType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Rest\Transition\RequestIntegrationFormType" (parent: .abstract.instanceof.App\Form\Rest\Transition\RequestIntegrationFormType).
  • Resolving inheritance for "App\Form\Rest\Transition\RequestIntegrationFormType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Rest\Transition\RequestIntegrationFormType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Scia\PraticaEdiliziaAllegatiModuloSciaType" (parent: .abstract.instanceof.App\Form\Scia\PraticaEdiliziaAllegatiModuloSciaType).
  • Resolving inheritance for "App\Form\Scia\PraticaEdiliziaAllegatiModuloSciaType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Scia\PraticaEdiliziaAllegatiModuloSciaType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Scia\PraticaEdiliziaAllegatiTecniciType" (parent: .abstract.instanceof.App\Form\Scia\PraticaEdiliziaAllegatiTecniciType).
  • Resolving inheritance for "App\Form\Scia\PraticaEdiliziaAllegatiTecniciType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Scia\PraticaEdiliziaAllegatiTecniciType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Scia\PraticaEdiliziaModuloSciaType" (parent: .abstract.instanceof.App\Form\Scia\PraticaEdiliziaModuloSciaType).
  • Resolving inheritance for "App\Form\Scia\PraticaEdiliziaModuloSciaType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Scia\PraticaEdiliziaModuloSciaType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Scia\PraticaEdiliziaProvvedimentiType" (parent: .abstract.instanceof.App\Form\Scia\PraticaEdiliziaProvvedimentiType).
  • Resolving inheritance for "App\Form\Scia\PraticaEdiliziaProvvedimentiType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Scia\PraticaEdiliziaProvvedimentiType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Scia\PraticaEdiliziaSoggettiType" (parent: .abstract.instanceof.App\Form\Scia\PraticaEdiliziaSoggettiType).
  • Resolving inheritance for "App\Form\Scia\PraticaEdiliziaSoggettiType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Scia\PraticaEdiliziaSoggettiType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Scia\PraticaEdiliziaVincoliType" (parent: .abstract.instanceof.App\Form\Scia\PraticaEdiliziaVincoliType).
  • Resolving inheritance for "App\Form\Scia\PraticaEdiliziaVincoliType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Scia\PraticaEdiliziaVincoliType).
  • Resolving inheritance for "App\Form\Scia\SciaPraticaEdiliziaFlow" (parent: ocsdc.form.flow.pratica).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Security\NewPasswordType" (parent: .abstract.instanceof.App\Form\Security\NewPasswordType).
  • Resolving inheritance for "App\Form\Security\NewPasswordType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Security\NewPasswordType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Security\PasswordRequestType" (parent: .abstract.instanceof.App\Form\Security\PasswordRequestType).
  • Resolving inheritance for "App\Form\Security\PasswordRequestType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Security\PasswordRequestType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\ServizioFormType" (parent: .abstract.instanceof.App\Form\ServizioFormType).
  • Resolving inheritance for "App\Form\ServizioFormType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\ServizioFormType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\SubscriberMessageType" (parent: .abstract.instanceof.App\Form\SubscriberMessageType).
  • Resolving inheritance for "App\Form\SubscriberMessageType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\SubscriberMessageType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\SubscriberType" (parent: .abstract.instanceof.App\Form\SubscriberType).
  • Resolving inheritance for "App\Form\SubscriberType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\SubscriberType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\SubscriptionPaymentType" (parent: .abstract.instanceof.App\Form\SubscriptionPaymentType).
  • Resolving inheritance for "App\Form\SubscriptionPaymentType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\SubscriptionPaymentType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\SubscriptionServiceType" (parent: .abstract.instanceof.App\Form\SubscriptionServiceType).
  • Resolving inheritance for "App\Form\SubscriptionServiceType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\SubscriptionServiceType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\SubscriptionType" (parent: .abstract.instanceof.App\Form\SubscriptionType).
  • Resolving inheritance for "App\Form\SubscriptionType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\SubscriptionType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\TagsType" (parent: .abstract.instanceof.App\Form\TagsType).
  • Resolving inheritance for "App\Form\TagsType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\TagsType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\TenantType" (parent: .abstract.instanceof.App\Form\TenantType).
  • Resolving inheritance for "App\Form\TenantType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\TenantType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\UserAPIFormType" (parent: .abstract.instanceof.App\Form\UserAPIFormType).
  • Resolving inheritance for "App\Form\UserAPIFormType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\UserAPIFormType).
  • Resolving inheritance for ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\FormIO\FormIOType" (parent: .abstract.instanceof.App\FormIO\FormIOType).
  • Resolving inheritance for "App\FormIO\FormIOType" (parent: .instanceof.Symfony\Component\Form\FormTypeInterface.0.App\FormIO\FormIOType).
  • Resolving inheritance for ".instanceof.Symfony\Component\EventDispatcher\EventSubscriberInterface.0.App\Payment\Gateway\Bollo" (parent: .abstract.instanceof.App\Payment\Gateway\Bollo).
  • Resolving inheritance for "App\Payment\Gateway\Bollo" (parent: .instanceof.Symfony\Component\EventDispatcher\EventSubscriberInterface.0.App\Payment\Gateway\Bollo).
  • Resolving inheritance for ".instanceof.Symfony\Component\EventDispatcher\EventSubscriberInterface.0.App\Payment\Gateway\GenericExternalPay" (parent: .abstract.instanceof.App\Payment\Gateway\GenericExternalPay).
  • Resolving inheritance for "App\Payment\Gateway\GenericExternalPay" (parent: .instanceof.Symfony\Component\EventDispatcher\EventSubscriberInterface.0.App\Payment\Gateway\GenericExternalPay).
  • Resolving inheritance for ".instanceof.Symfony\Component\EventDispatcher\EventSubscriberInterface.0.App\Payment\Gateway\MyPay" (parent: .abstract.instanceof.App\Payment\Gateway\MyPay).
  • Resolving inheritance for "App\Payment\Gateway\MyPay" (parent: .instanceof.Symfony\Component\EventDispatcher\EventSubscriberInterface.0.App\Payment\Gateway\MyPay).
  • Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Repository\ContactPointRepository" (parent: .abstract.instanceof.App\Repository\ContactPointRepository).
  • Resolving inheritance for "App\Repository\ContactPointRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Repository\ContactPointRepository).
  • Resolving inheritance for ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Repository\PlaceRepository" (parent: .abstract.instanceof.App\Repository\PlaceRepository).
  • Resolving inheritance for "App\Repository\PlaceRepository" (parent: .instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Repository\PlaceRepository).
  • Resolving inheritance for ".instanceof.Symfony\Component\Security\Core\Authorization\Voter\VoterInterface.0.App\Security\Voters\ApplicationVoter" (parent: .abstract.instanceof.App\Security\Voters\ApplicationVoter).
  • Resolving inheritance for "App\Security\Voters\ApplicationVoter" (parent: .instanceof.Symfony\Component\Security\Core\Authorization\Voter\VoterInterface.0.App\Security\Voters\ApplicationVoter).
  • Resolving inheritance for ".instanceof.Symfony\Component\Security\Core\Authorization\Voter\VoterInterface.0.App\Security\Voters\AttachmentVoter" (parent: .abstract.instanceof.App\Security\Voters\AttachmentVoter).
  • Resolving inheritance for "App\Security\Voters\AttachmentVoter" (parent: .instanceof.Symfony\Component\Security\Core\Authorization\Voter\VoterInterface.0.App\Security\Voters\AttachmentVoter).
  • Resolving inheritance for ".instanceof.Symfony\Component\Security\Core\Authorization\Voter\VoterInterface.0.App\Security\Voters\BackofficeVoter" (parent: .abstract.instanceof.App\Security\Voters\BackofficeVoter).
  • Resolving inheritance for "App\Security\Voters\BackofficeVoter" (parent: .instanceof.Symfony\Component\Security\Core\Authorization\Voter\VoterInterface.0.App\Security\Voters\BackofficeVoter).
  • Resolving inheritance for ".instanceof.Symfony\Component\Security\Core\Authorization\Voter\VoterInterface.0.App\Security\Voters\CalendarVoter" (parent: .abstract.instanceof.App\Security\Voters\CalendarVoter).
  • Resolving inheritance for "App\Security\Voters\CalendarVoter" (parent: .instanceof.Symfony\Component\Security\Core\Authorization\Voter\VoterInterface.0.App\Security\Voters\CalendarVoter).
  • Resolving inheritance for ".instanceof.Symfony\Component\Security\Core\Authorization\Voter\VoterInterface.0.App\Security\Voters\DocumentVoter" (parent: .abstract.instanceof.App\Security\Voters\DocumentVoter).
  • Resolving inheritance for "App\Security\Voters\DocumentVoter" (parent: .instanceof.Symfony\Component\Security\Core\Authorization\Voter\VoterInterface.0.App\Security\Voters\DocumentVoter).
  • Resolving inheritance for ".instanceof.Symfony\Component\Security\Core\Authorization\Voter\VoterInterface.0.App\Security\Voters\FolderVoter" (parent: .abstract.instanceof.App\Security\Voters\FolderVoter).
  • Resolving inheritance for "App\Security\Voters\FolderVoter" (parent: .instanceof.Symfony\Component\Security\Core\Authorization\Voter\VoterInterface.0.App\Security\Voters\FolderVoter).
  • Resolving inheritance for ".instanceof.Symfony\Component\Security\Core\Authorization\Voter\VoterInterface.0.App\Security\Voters\MeetingVoter" (parent: .abstract.instanceof.App\Security\Voters\MeetingVoter).
  • Resolving inheritance for "App\Security\Voters\MeetingVoter" (parent: .instanceof.Symfony\Component\Security\Core\Authorization\Voter\VoterInterface.0.App\Security\Voters\MeetingVoter).
  • Resolving inheritance for ".instanceof.Symfony\Component\Security\Core\Authorization\Voter\VoterInterface.0.App\Security\Voters\MessageVoter" (parent: .abstract.instanceof.App\Security\Voters\MessageVoter).
  • Resolving inheritance for "App\Security\Voters\MessageVoter" (parent: .instanceof.Symfony\Component\Security\Core\Authorization\Voter\VoterInterface.0.App\Security\Voters\MessageVoter).
  • Resolving inheritance for ".instanceof.Symfony\Component\Security\Core\Authorization\Voter\VoterInterface.0.App\Security\Voters\SubscriberVoter" (parent: .abstract.instanceof.App\Security\Voters\SubscriberVoter).
  • Resolving inheritance for "App\Security\Voters\SubscriberVoter" (parent: .instanceof.Symfony\Component\Security\Core\Authorization\Voter\VoterInterface.0.App\Security\Voters\SubscriberVoter).
  • Resolving inheritance for ".instanceof.Symfony\Component\Security\Core\Authorization\Voter\VoterInterface.0.App\Security\Voters\SubscriptionVoter" (parent: .abstract.instanceof.App\Security\Voters\SubscriptionVoter).
  • Resolving inheritance for "App\Security\Voters\SubscriptionVoter" (parent: .instanceof.Symfony\Component\Security\Core\Authorization\Voter\VoterInterface.0.App\Security\Voters\SubscriptionVoter).
  • Resolving inheritance for ".instanceof.Symfony\Component\Security\Core\Authorization\Voter\VoterInterface.0.App\Security\Voters\UserVoter" (parent: .abstract.instanceof.App\Security\Voters\UserVoter).
  • Resolving inheritance for "App\Security\Voters\UserVoter" (parent: .instanceof.Symfony\Component\Security\Core\Authorization\Voter\VoterInterface.0.App\Security\Voters\UserVoter).
  • Resolving inheritance for ".instanceof.Artprima\PrometheusMetricsBundle\Metrics\MetricsCollectorInterface.0.App\Services\Metrics\ApplicationMetrics" (parent: .abstract.instanceof.App\Services\Metrics\ApplicationMetrics).
  • Resolving inheritance for "App\Services\Metrics\ApplicationMetrics" (parent: .instanceof.Artprima\PrometheusMetricsBundle\Metrics\MetricsCollectorInterface.0.App\Services\Metrics\ApplicationMetrics).
  • Resolving inheritance for ".instanceof.Artprima\PrometheusMetricsBundle\Metrics\MetricsCollectorInterface.0.App\Services\Metrics\ScheduledActionMetrics" (parent: .abstract.instanceof.App\Services\Metrics\ScheduledActionMetrics).
  • Resolving inheritance for "App\Services\Metrics\ScheduledActionMetrics" (parent: .instanceof.Artprima\PrometheusMetricsBundle\Metrics\MetricsCollectorInterface.0.App\Services\Metrics\ScheduledActionMetrics).
  • Resolving inheritance for ".instanceof.Artprima\PrometheusMetricsBundle\Metrics\MetricsCollectorInterface.0.App\Services\Metrics\UserMetrics" (parent: .abstract.instanceof.App\Services\Metrics\UserMetrics).
  • Resolving inheritance for "App\Services\Metrics\UserMetrics" (parent: .instanceof.Artprima\PrometheusMetricsBundle\Metrics\MetricsCollectorInterface.0.App\Services\Metrics\UserMetrics).
  • Resolving inheritance for ".instanceof.Twig\Extension\ExtensionInterface.0.App\Twig\AppExtension" (parent: .abstract.instanceof.App\Twig\AppExtension).
  • Resolving inheritance for "App\Twig\AppExtension" (parent: .instanceof.Twig\Extension\ExtensionInterface.0.App\Twig\AppExtension).
  • Resolving inheritance for ".instanceof.Twig\Extension\ExtensionInterface.0.App\Twig\HtmlSpecialCharsDecode" (parent: .abstract.instanceof.App\Twig\HtmlSpecialCharsDecode).
  • Resolving inheritance for "App\Twig\HtmlSpecialCharsDecode" (parent: .instanceof.Twig\Extension\ExtensionInterface.0.App\Twig\HtmlSpecialCharsDecode).
  • Resolving inheritance for ".instanceof.Twig\Extension\ExtensionInterface.0.App\Twig\IterCalculatorExtension" (parent: .abstract.instanceof.App\Twig\IterCalculatorExtension).
  • Resolving inheritance for "App\Twig\IterCalculatorExtension" (parent: .instanceof.Twig\Extension\ExtensionInterface.0.App\Twig\IterCalculatorExtension).
  • Resolving inheritance for ".instanceof.Twig\Extension\ExtensionInterface.0.App\Twig\JsonDecode" (parent: .abstract.instanceof.App\Twig\JsonDecode).
  • Resolving inheritance for "App\Twig\JsonDecode" (parent: .instanceof.Twig\Extension\ExtensionInterface.0.App\Twig\JsonDecode).
  • Resolving inheritance for ".instanceof.Twig\Extension\ExtensionInterface.0.App\Twig\TimeAgo" (parent: .abstract.instanceof.App\Twig\TimeAgo).
  • Resolving inheritance for "App\Twig\TimeAgo" (parent: .instanceof.Twig\Extension\ExtensionInterface.0.App\Twig\TimeAgo).
  • Resolving inheritance for ".instanceof.Twig\Extension\ExtensionInterface.0.App\Twig\Unserialize" (parent: .abstract.instanceof.App\Twig\Unserialize).
  • Resolving inheritance for "App\Twig\Unserialize" (parent: .instanceof.Twig\Extension\ExtensionInterface.0.App\Twig\Unserialize).
  • Resolving inheritance for ".instanceof.Symfony\Component\Validator\ConstraintValidatorInterface.0.App\Validator\Constraints\ExpressionBasedFormIOConstraintValidator" (parent: .abstract.instanceof.App\Validator\Constraints\ExpressionBasedFormIOConstraintValidator).
  • Resolving inheritance for "App\Validator\Constraints\ExpressionBasedFormIOConstraintValidator" (parent: .instanceof.Symfony\Component\Validator\ConstraintValidatorInterface.0.App\Validator\Constraints\ExpressionBasedFormIOConstraintValidator).
  • Resolving inheritance for ".instanceof.Symfony\Component\Validator\ConstraintValidatorInterface.0.App\Validator\Constraints\ServerSideFormIOConstraintValidator" (parent: .abstract.instanceof.App\Validator\Constraints\ServerSideFormIOConstraintValidator).
  • Resolving inheritance for "App\Validator\Constraints\ServerSideFormIOConstraintValidator" (parent: .instanceof.Symfony\Component\Validator\ConstraintValidatorInterface.0.App\Validator\Constraints\ServerSideFormIOConstraintValidator).
  • Resolving inheritance for ".instanceof.Symfony\Component\Validator\ConstraintValidatorInterface.0.App\Validator\Constraints\ValidMimeTypeValidator" (parent: .abstract.instanceof.App\Validator\Constraints\ValidMimeTypeValidator).
  • Resolving inheritance for "App\Validator\Constraints\ValidMimeTypeValidator" (parent: .instanceof.Symfony\Component\Validator\ConstraintValidatorInterface.0.App\Validator\Constraints\ValidMimeTypeValidator).
  • Resolving inheritance for ".instanceof.Monolog\Processor\ProcessorInterface.0.monolog_processor" (parent: .abstract.instanceof.monolog_processor).
  • Resolving inheritance for "monolog_processor" (parent: .instanceof.Monolog\Processor\ProcessorInterface.0.monolog_processor).
  • Resolving inheritance for ".instanceof.Symfony\Component\Validator\ConstraintValidatorInterface.0.ocsdc.validator.scia.at_least_one_attachment" (parent: .abstract.instanceof.ocsdc.validator.scia.at_least_one_attachment).
  • Resolving inheritance for "ocsdc.validator.scia.at_least_one_attachment" (parent: .instanceof.Symfony\Component\Validator\ConstraintValidatorInterface.0.ocsdc.validator.scia.at_least_one_attachment).
  • Resolving inheritance for ".instanceof.Symfony\Contracts\Service\ResetInterface.0.http.client" (parent: .abstract.instanceof.http.client).
  • Resolving inheritance for ".instanceof.Psr\Log\LoggerAwareInterface.0.http.client" (parent: .instanceof.Symfony\Contracts\Service\ResetInterface.0.http.client).
  • Resolving inheritance for "http.client" (parent: .instanceof.Psr\Log\LoggerAwareInterface.0.http.client).
  • Resolving inheritance for ".instanceof.Symfony\Component\Validator\ConstraintValidatorInterface.0.formio.constraint_validator" (parent: .abstract.instanceof.formio.constraint_validator).
  • Resolving inheritance for "formio.constraint_validator" (parent: .instanceof.Symfony\Component\Validator\ConstraintValidatorInterface.0.formio.constraint_validator).
  • Resolving inheritance for ".instanceof.Symfony\Component\Validator\ConstraintValidatorInterface.0.formio.expression_based_validator" (parent: .abstract.instanceof.formio.expression_based_validator).
  • Resolving inheritance for "formio.expression_based_validator" (parent: .instanceof.Symfony\Component\Validator\ConstraintValidatorInterface.0.formio.expression_based_validator).
  • Resolving inheritance for "cache.app" (parent: cache.adapter.filesystem).
  • Resolving inheritance for "cache.system" (parent: cache.adapter.system).
  • Resolving inheritance for "cache.validator" (parent: cache.system).
  • Resolving inheritance for "cache.serializer" (parent: cache.system).
  • Resolving inheritance for "cache.annotations" (parent: cache.system).
  • Resolving inheritance for "cache.property_info" (parent: cache.system).
  • Resolving inheritance for "cache.system_clearer" (parent: cache.default_clearer).
  • Resolving inheritance for "cache.global_clearer" (parent: cache.default_clearer).
  • Resolving inheritance for "assets._version__default" (parent: assets.json_manifest_version_strategy).
  • Resolving inheritance for "assets._default_package" (parent: assets.path_package).
  • Resolving inheritance for "cache.security_expression_language" (parent: cache.system).
  • Resolving inheritance for "security.authentication.listener.form" (parent: security.authentication.listener.abstract).
  • Resolving inheritance for "security.authentication.listener.simple_form" (parent: security.authentication.listener.abstract).
  • Resolving inheritance for "security.authentication.rememberme.services.persistent" (parent: security.authentication.rememberme.services.abstract).
  • Resolving inheritance for "security.authentication.rememberme.services.simplehash" (parent: security.authentication.rememberme.services.abstract).
  • Resolving inheritance for "security.user.provider.concrete.chain_provider" (parent: security.user.provider.chain).
  • Resolving inheritance for "security.user.provider.concrete.in_memory" (parent: security.user.provider.in_memory).
  • Resolving inheritance for "security.user.provider.concrete.app_user_provider" (parent: doctrine.orm.security.user.provider).
  • Resolving inheritance for "security.firewall.map.config.dev" (parent: security.firewall.config).
  • Resolving inheritance for "security.firewall.map.context.dev" (parent: security.firewall.context).
  • Resolving inheritance for "security.firewall.map.config.api_login" (parent: security.firewall.config).
  • Resolving inheritance for "security.authentication.provider.dao.api_login" (parent: security.authentication.provider.dao).
  • Resolving inheritance for "security.authentication.success_handler.api_login.json_login" (parent: security.authentication.custom_success_handler).
  • Resolving inheritance for "security.authentication.failure_handler.api_login.json_login" (parent: security.authentication.custom_failure_handler).
  • Resolving inheritance for "security.authentication.listener.json.api_login" (parent: security.authentication.listener.json).
  • Resolving inheritance for "security.authentication.listener.anonymous.api_login" (parent: security.authentication.listener.anonymous).
  • Resolving inheritance for "security.authentication.provider.anonymous.api_login" (parent: security.authentication.provider.anonymous).
  • Resolving inheritance for "security.exception_listener.api_login" (parent: security.exception_listener).
  • Resolving inheritance for "security.firewall.map.context.api_login" (parent: security.firewall.context).
  • Resolving inheritance for "security.firewall.map.config.api_secure" (parent: security.firewall.config).
  • Resolving inheritance for "security.authentication.provider.guard.api_secure" (parent: security.authentication.provider.guard).
  • Resolving inheritance for "security.authentication.listener.guard.api_secure" (parent: security.authentication.listener.guard).
  • Resolving inheritance for "security.exception_listener.api_secure" (parent: security.exception_listener).
  • Resolving inheritance for "security.firewall.map.context.api_secure" (parent: security.firewall.context).
  • Resolving inheritance for "security.firewall.map.config.api" (parent: security.firewall.config).
  • Resolving inheritance for "security.authentication.provider.guard.api" (parent: security.authentication.provider.guard).
  • Resolving inheritance for "security.authentication.listener.guard.api" (parent: security.authentication.listener.guard).
  • Resolving inheritance for "security.exception_listener.api" (parent: security.exception_listener).
  • Resolving inheritance for "security.firewall.map.context.api" (parent: security.firewall.context).
  • Resolving inheritance for "security.firewall.map.config.backend" (parent: security.firewall.config).
  • Resolving inheritance for "security.context_listener.0" (parent: security.context_listener).
  • Resolving inheritance for "security.logout_listener.backend" (parent: security.logout_listener).
  • Resolving inheritance for "security.logout.success_handler.backend" (parent: security.logout.success_handler).
  • Resolving inheritance for "security.logout.handler.cookie_clearing.backend" (parent: security.logout.handler.cookie_clearing).
  • Resolving inheritance for "security.authentication.provider.guard.backend" (parent: security.authentication.provider.guard).
  • Resolving inheritance for "security.authentication.listener.guard.backend" (parent: security.authentication.listener.guard).
  • Resolving inheritance for "security.authentication.provider.dao.backend" (parent: security.authentication.provider.dao).
  • Resolving inheritance for "security.authentication.success_handler.backend.form_login" (parent: security.authentication.custom_success_handler).
  • Resolving inheritance for "security.authentication.failure_handler.backend.form_login" (parent: security.authentication.failure_handler).
  • Resolving inheritance for "security.authentication.listener.form.backend" (parent: security.authentication.listener.form).
  • Resolving inheritance for "security.authentication.form_entry_point.backend" (parent: security.authentication.form_entry_point).
  • Resolving inheritance for "security.authentication.listener.anonymous.backend" (parent: security.authentication.listener.anonymous).
  • Resolving inheritance for "security.authentication.provider.anonymous.backend" (parent: security.authentication.provider.anonymous).
  • Resolving inheritance for "security.exception_listener.backend" (parent: security.exception_listener).
  • Resolving inheritance for "security.firewall.map.context.backend" (parent: security.firewall.context).
  • Resolving inheritance for "security.firewall.map.config.giscom_api" (parent: security.firewall.config).
  • Resolving inheritance for "security.context_listener.1" (parent: security.context_listener).
  • Resolving inheritance for "security.authentication.provider.dao.giscom_api" (parent: security.authentication.provider.dao).
  • Resolving inheritance for "security.authentication.basic_entry_point.giscom_api" (parent: security.authentication.basic_entry_point).
  • Resolving inheritance for "security.authentication.listener.basic.giscom_api" (parent: security.authentication.listener.basic).
  • Resolving inheritance for "security.exception_listener.giscom_api" (parent: security.exception_listener).
  • Resolving inheritance for "security.firewall.map.context.giscom_api" (parent: security.firewall.context).
  • Resolving inheritance for "security.firewall.map.config.ez_api" (parent: security.firewall.config).
  • Resolving inheritance for "security.context_listener.2" (parent: security.context_listener).
  • Resolving inheritance for "security.authentication.provider.dao.ez_api" (parent: security.authentication.provider.dao).
  • Resolving inheritance for "security.authentication.basic_entry_point.ez_api" (parent: security.authentication.basic_entry_point).
  • Resolving inheritance for "security.authentication.listener.basic.ez_api" (parent: security.authentication.listener.basic).
  • Resolving inheritance for "security.exception_listener.ez_api" (parent: security.exception_listener).
  • Resolving inheritance for "security.firewall.map.context.ez_api" (parent: security.firewall.context).
  • Resolving inheritance for "security.firewall.map.config.print" (parent: security.firewall.config).
  • Resolving inheritance for "security.context_listener.3" (parent: security.context_listener).
  • Resolving inheritance for "security.authentication.provider.dao.print" (parent: security.authentication.provider.dao).
  • Resolving inheritance for "security.authentication.basic_entry_point.print" (parent: security.authentication.basic_entry_point).
  • Resolving inheritance for "security.authentication.listener.basic.print" (parent: security.authentication.listener.basic).
  • Resolving inheritance for "security.exception_listener.print" (parent: security.exception_listener).
  • Resolving inheritance for "security.firewall.map.context.print" (parent: security.firewall.context).
  • Resolving inheritance for "security.firewall.map.config.open_login" (parent: security.firewall.config).
  • Resolving inheritance for "security.logout_listener.open_login" (parent: security.logout_listener).
  • Resolving inheritance for "security.logout.handler.cookie_clearing.open_login" (parent: security.logout.handler.cookie_clearing).
  • Resolving inheritance for "security.authentication.provider.guard.open_login" (parent: security.authentication.provider.guard).
  • Resolving inheritance for "security.authentication.listener.guard.open_login" (parent: security.authentication.listener.guard).
  • Resolving inheritance for "security.authentication.listener.anonymous.open_login" (parent: security.authentication.listener.anonymous).
  • Resolving inheritance for "security.authentication.provider.anonymous.open_login" (parent: security.authentication.provider.anonymous).
  • Resolving inheritance for "security.exception_listener.open_login" (parent: security.exception_listener).
  • Resolving inheritance for "security.firewall.map.context.open_login" (parent: security.firewall.context).
  • Resolving inheritance for "security.firewall.map.config.main" (parent: security.firewall.config).
  • Resolving inheritance for "security.context_listener.4" (parent: security.context_listener).
  • Resolving inheritance for "security.authentication.listener.anonymous.main" (parent: security.authentication.listener.anonymous).
  • Resolving inheritance for "security.authentication.provider.anonymous.main" (parent: security.authentication.provider.anonymous).
  • Resolving inheritance for "security.exception_listener.main" (parent: security.exception_listener).
  • Resolving inheritance for "security.firewall.map.context.main" (parent: security.firewall.context).
  • Resolving inheritance for "doctrine.dbal.default_connection.configuration" (parent: doctrine.dbal.connection.configuration).
  • Resolving inheritance for "doctrine.dbal.logger.profiling.default" (parent: doctrine.dbal.logger.profiling).
  • Resolving inheritance for "doctrine.dbal.default_connection.event_manager" (parent: doctrine.dbal.connection.event_manager).
  • Resolving inheritance for "doctrine.dbal.default_connection" (parent: doctrine.dbal.connection).
  • Resolving inheritance for "doctrine.orm.default_configuration" (parent: doctrine.orm.configuration).
  • Resolving inheritance for "doctrine.orm.default_manager_configurator" (parent: doctrine.orm.manager_configurator.abstract).
  • Resolving inheritance for "doctrine.orm.default_entity_manager" (parent: doctrine.orm.entity_manager.abstract).
  • Resolving inheritance for "lexik_jwt_authentication.key_loader.openssl" (parent: lexik_jwt_authentication.key_loader.abstract).
  • Resolving inheritance for "lexik_jwt_authentication.key_loader.raw" (parent: lexik_jwt_authentication.key_loader.abstract).
  • Resolving inheritance for ".instanceof.Omines\DataTablesBundle\Adapter\AdapterInterface.0.Omines\DataTablesBundle\Adapter\ArrayAdapter" (parent: .abstract.instanceof.Omines\DataTablesBundle\Adapter\ArrayAdapter).
  • Resolving inheritance for "Omines\DataTablesBundle\Adapter\ArrayAdapter" (parent: .instanceof.Omines\DataTablesBundle\Adapter\AdapterInterface.0.Omines\DataTablesBundle\Adapter\ArrayAdapter).
  • Resolving inheritance for ".instanceof.Omines\DataTablesBundle\Adapter\AdapterInterface.0.Omines\DataTablesBundle\Adapter\Doctrine\ORMAdapter" (parent: .abstract.instanceof.Omines\DataTablesBundle\Adapter\Doctrine\ORMAdapter).
  • Resolving inheritance for "Omines\DataTablesBundle\Adapter\Doctrine\ORMAdapter" (parent: .instanceof.Omines\DataTablesBundle\Adapter\AdapterInterface.0.Omines\DataTablesBundle\Adapter\Doctrine\ORMAdapter).
  • Resolving inheritance for ".instanceof.Omines\DataTablesBundle\Adapter\AdapterInterface.0.Omines\DataTablesBundle\Adapter\Doctrine\FetchJoinORMAdapter" (parent: .abstract.instanceof.Omines\DataTablesBundle\Adapter\Doctrine\FetchJoinORMAdapter).
  • Resolving inheritance for "Omines\DataTablesBundle\Adapter\Doctrine\FetchJoinORMAdapter" (parent: .instanceof.Omines\DataTablesBundle\Adapter\AdapterInterface.0.Omines\DataTablesBundle\Adapter\Doctrine\FetchJoinORMAdapter).
  • Resolving inheritance for ".instanceof.Omines\DataTablesBundle\Column\AbstractColumn.0.Omines\DataTablesBundle\Column\TwigColumn" (parent: .abstract.instanceof.Omines\DataTablesBundle\Column\TwigColumn).
  • Resolving inheritance for "Omines\DataTablesBundle\Column\TwigColumn" (parent: .instanceof.Omines\DataTablesBundle\Column\AbstractColumn.0.Omines\DataTablesBundle\Column\TwigColumn).
  • Resolving inheritance for ".instanceof.Omines\DataTablesBundle\Column\AbstractColumn.0.Omines\DataTablesBundle\Column\TwigStringColumn" (parent: .abstract.instanceof.Omines\DataTablesBundle\Column\TwigStringColumn).
  • Resolving inheritance for "Omines\DataTablesBundle\Column\TwigStringColumn" (parent: .instanceof.Omines\DataTablesBundle\Column\AbstractColumn.0.Omines\DataTablesBundle\Column\TwigStringColumn).
  • Resolving inheritance for ".instanceof.Omines\DataTablesBundle\Exporter\DataTableExporterInterface.0.Omines\DataTablesBundle\Exporter\Excel\ExcelExporter" (parent: .abstract.instanceof.Omines\DataTablesBundle\Exporter\Excel\ExcelExporter).
  • Resolving inheritance for "Omines\DataTablesBundle\Exporter\Excel\ExcelExporter" (parent: .instanceof.Omines\DataTablesBundle\Exporter\DataTableExporterInterface.0.Omines\DataTablesBundle\Exporter\Excel\ExcelExporter).
  • Resolving inheritance for ".instanceof.Omines\DataTablesBundle\Exporter\DataTableExporterInterface.0.Omines\DataTablesBundle\Exporter\Csv\CsvExporter" (parent: .abstract.instanceof.Omines\DataTablesBundle\Exporter\Csv\CsvExporter).
  • Resolving inheritance for "Omines\DataTablesBundle\Exporter\Csv\CsvExporter" (parent: .instanceof.Omines\DataTablesBundle\Exporter\DataTableExporterInterface.0.Omines\DataTablesBundle\Exporter\Csv\CsvExporter).
  • Resolving inheritance for ".instanceof.Twig\Extension\ExtensionInterface.0.Omines\DataTablesBundle\Twig\DataTablesExtension" (parent: .abstract.instanceof.Omines\DataTablesBundle\Twig\DataTablesExtension).
  • Resolving inheritance for "Omines\DataTablesBundle\Twig\DataTablesExtension" (parent: .instanceof.Twig\Extension\ExtensionInterface.0.Omines\DataTablesBundle\Twig\DataTablesExtension).
  • Resolving inheritance for "oneup_flysystem.s3_adapter_adapter" (parent: oneup_flysystem.adapter.awss3v3).
  • Resolving inheritance for "oneup_flysystem.local_adapter_adapter" (parent: oneup_flysystem.adapter.local).
  • Resolving inheritance for "oneup_flysystem.s3_filesystem_filesystem" (parent: oneup_flysystem.filesystem).
  • Resolving inheritance for "oneup_flysystem.local_filesystem_filesystem" (parent: oneup_flysystem.filesystem).
  • Resolving inheritance for "monolog.logger" (parent: monolog.logger_prototype).
  • Resolving inheritance for "swiftmailer.mailer.default.transport.eventdispatcher" (parent: swiftmailer.transport.eventdispatcher.abstract).
  • Resolving inheritance for "swiftmailer.mailer.default" (parent: swiftmailer.mailer.abstract).
  • Resolving inheritance for "swiftmailer.mailer.default.plugin.messagelogger" (parent: swiftmailer.plugin.messagelogger.abstract).
  • Resolving inheritance for "cache.webpack_encore" (parent: cache.system).
  • Resolving inheritance for "vich_uploader.namer_uniqid.allegato" (parent: vich_uploader.namer_uniqid).
  • Resolving inheritance for "vich_uploader.listener.inject.orm" (parent: vich_uploader.listener.doctrine.base).
  • Resolving inheritance for "vich_uploader.listener.upload.orm" (parent: vich_uploader.listener.doctrine.base).
  • Resolving inheritance for "vich_uploader.listener.clean.orm" (parent: vich_uploader.listener.doctrine.base).
  • Resolving inheritance for "vich_uploader.listener.remove.orm" (parent: vich_uploader.listener.doctrine.base).
  • Resolving inheritance for "vich_uploader.listener.inject.mongodb" (parent: vich_uploader.listener.inject.orm).
  • Resolving inheritance for "vich_uploader.listener.upload.mongodb" (parent: vich_uploader.listener.upload.orm).
  • Resolving inheritance for "vich_uploader.listener.clean.mongodb" (parent: vich_uploader.listener.clean.orm).
  • Resolving inheritance for "vich_uploader.listener.remove.mongodb" (parent: vich_uploader.listener.remove.orm).
  • Resolving inheritance for "vich_uploader.listener.inject.phpcr" (parent: vich_uploader.listener.inject.orm).
  • Resolving inheritance for "vich_uploader.listener.upload.phpcr" (parent: vich_uploader.listener.upload.orm).
  • Resolving inheritance for "vich_uploader.listener.clean.phpcr" (parent: vich_uploader.listener.clean.orm).
  • Resolving inheritance for "vich_uploader.listener.remove.phpcr" (parent: vich_uploader.listener.remove.orm).
  • Resolving inheritance for "vich_uploader.listener.inject.allegato" (parent: vich_uploader.listener.inject.orm).
  • Resolving inheritance for "vich_uploader.listener.clean.allegato" (parent: vich_uploader.listener.clean.orm).
  • Resolving inheritance for "vich_uploader.listener.remove.allegato" (parent: vich_uploader.listener.remove.orm).
  • Resolving inheritance for "vich_uploader.listener.upload.allegato" (parent: vich_uploader.listener.upload.orm).
  • Resolving inheritance for "maker.auto_command.make_auth" (parent: maker.auto_command.abstract).
  • Resolving inheritance for "maker.auto_command.make_command" (parent: maker.auto_command.abstract).
  • Resolving inheritance for "maker.auto_command.make_controller" (parent: maker.auto_command.abstract).
  • Resolving inheritance for "maker.auto_command.make_crud" (parent: maker.auto_command.abstract).
  • Resolving inheritance for "maker.auto_command.make_docker_database" (parent: maker.auto_command.abstract).
  • Resolving inheritance for "maker.auto_command.make_entity" (parent: maker.auto_command.abstract).
  • Resolving inheritance for "maker.auto_command.make_fixtures" (parent: maker.auto_command.abstract).
  • Resolving inheritance for "maker.auto_command.make_form" (parent: maker.auto_command.abstract).
  • Resolving inheritance for "maker.auto_command.make_message" (parent: maker.auto_command.abstract).
  • Resolving inheritance for "maker.auto_command.make_messenger_middleware" (parent: maker.auto_command.abstract).
  • Resolving inheritance for "maker.auto_command.make_registration_form" (parent: maker.auto_command.abstract).
  • Resolving inheritance for "maker.auto_command.make_reset_password" (parent: maker.auto_command.abstract).
  • Resolving inheritance for "maker.auto_command.make_serializer_encoder" (parent: maker.auto_command.abstract).
  • Resolving inheritance for "maker.auto_command.make_serializer_normalizer" (parent: maker.auto_command.abstract).
  • Resolving inheritance for "maker.auto_command.make_subscriber" (parent: maker.auto_command.abstract).
  • Resolving inheritance for "maker.auto_command.make_twig_extension" (parent: maker.auto_command.abstract).
  • Resolving inheritance for "maker.auto_command.make_test" (parent: maker.auto_command.abstract).
  • Resolving inheritance for "maker.auto_command.make_validator" (parent: maker.auto_command.abstract).
  • Resolving inheritance for "maker.auto_command.make_voter" (parent: maker.auto_command.abstract).
  • Resolving inheritance for "maker.auto_command.make_user" (parent: maker.auto_command.abstract).
  • Resolving inheritance for "maker.auto_command.make_migration" (parent: maker.auto_command.abstract).
  • Resolving inheritance for "fos_rest.request_matcher.6d27357678da78ac461e8b851ac5bf83a1f9471f9d410dff7d760712cb7770b80848bf9c" (parent: fos_rest.format_request_matcher).
  • Resolving inheritance for "fos_rest.request_matcher.3cfa7a61c60c208198d4e083d6b4fd3255a4b139f2613b3fbad554f23d14eda296bdaee4" (parent: fos_rest.format_request_matcher).
  • Resolving inheritance for "fos_rest.request_matcher.00ae7ed07a7da71185d0d1be18d9f92bd46949e51f93105db1aeb052f23951b4a727315d" (parent: fos_rest.format_request_matcher).
  • Resolving inheritance for "monolog.logger.request" (parent: monolog.logger_prototype).
  • Resolving inheritance for "monolog.logger.console" (parent: monolog.logger_prototype).
  • Resolving inheritance for "monolog.logger.cache" (parent: monolog.logger_prototype).
  • Resolving inheritance for "monolog.logger.http_client" (parent: monolog.logger_prototype).
  • Resolving inheritance for "monolog.logger.translation" (parent: monolog.logger_prototype).
  • Resolving inheritance for "monolog.logger.profiler" (parent: monolog.logger_prototype).
  • Resolving inheritance for "monolog.logger.php" (parent: monolog.logger_prototype).
  • Resolving inheritance for "monolog.logger.event" (parent: monolog.logger_prototype).
  • Resolving inheritance for "monolog.logger.router" (parent: monolog.logger_prototype).
  • Resolving inheritance for "monolog.logger.security" (parent: monolog.logger_prototype).
  • Resolving inheritance for "monolog.logger.doctrine" (parent: monolog.logger_prototype).
  • Resolving inheritance for "monolog.logger.eight_points_guzzle" (parent: monolog.logger_prototype).
  • Resolving inheritance for "monolog.logger.nelmio_api_doc" (parent: monolog.logger_prototype).
  • Resolving inheritance for "monolog.logger.debug" (parent: monolog.logger_prototype).
731
Symfony\Component\DependencyInjection\Compiler\AutowirePass
  • Skipping service "App\Form\Scia\PraticaEdiliziaUlterioriAllegatiTecniciType": Class or interface "App\Form\Scia\PraticaEdiliziaUlterioriAllegatiTecniciType" cannot be loaded.
1
Symfony\Component\DependencyInjection\Compiler\RemovePrivateAliasesPass
  • Removed service "Psr\Container\ContainerInterface"; reason: private alias.
  • Removed service "Symfony\Component\DependencyInjection\ContainerInterface"; reason: private alias.
  • Removed service "ReCaptcha\RequestMethod"; reason: private alias.
  • Removed service "League\Flysystem\FilesystemInterface"; reason: private alias.
  • Removed service "Aws\S3\S3Client"; reason: private alias.
  • Removed service "GuzzleHttp\Client"; reason: private alias.
  • Removed service "ocsdc.backoffices"; reason: private alias.
  • Removed service "Vich\UploaderBundle\Naming\DirectoryNamerInterface"; reason: private alias.
  • Removed service "ocsdc.dedalogin.client"; reason: private alias.
  • Removed service "App\EventListener\LocaleRewriteListener"; reason: private alias.
  • Removed service "App\EventListener\LocaleApiListener"; reason: private alias.
  • Removed service "App\Services\MailerService"; reason: private alias.
  • Removed service "ocsdc.subscriptions_service"; reason: private alias.
  • Removed service "ocsdc.modulo_pdf_builder"; reason: private alias.
  • Removed service "ocsdc.webhook_service"; reason: private alias.
  • Removed service "ocsdc.kafka_service"; reason: private alias.
  • Removed service "ocsdc.reminder_service"; reason: private alias.
  • Removed service "App\Services\IOService"; reason: private alias.
  • Removed service "ocsdc.protocollo"; reason: private alias.
  • Removed service "ocsdc.protocollo_direct"; reason: private alias.
  • Removed service "ocsdc.protocollo.client"; reason: private alias.
  • Removed service "ocsdc.protocollo.handler"; reason: private alias.
  • Removed service "ocsdc.form.type.payment_gateway_type"; reason: private alias.
  • Removed service "ocsdc.pratica_status_service"; reason: private alias.
  • Removed service "ocsdc.instance_service"; reason: private alias.
  • Removed service "ocsdc.p7m_signature_check"; reason: private alias.
  • Removed service "App\Validator\Constraints\AtLeastOneAttachmentConstraintValidator"; reason: private alias.
  • Removed service "App\Services\GiscomAPIAdapterServiceInterface"; reason: private alias.
  • Removed service "ocsdc.formserver"; reason: private alias.
  • Removed service "App\FormIO\SchemaFactoryInterface"; reason: private alias.
  • Removed service "App\Doctrine\DBAL\ConnectionInterface"; reason: private alias.
  • Removed service "App\Doctrine\DBAL\Driver\ServerGoneAwayExceptionsAwareInterface"; reason: private alias.
  • Removed service "App\Form\I18n\I18nDataMapperInterface"; reason: private alias.
  • Removed service "App\FormIO\FormIOSchemaProviderInterface"; reason: private alias.
  • Removed service "App\Mapper\StatusMapperInterface"; reason: private alias.
  • Removed service "App\Model\FlowStepInterface"; reason: private alias.
  • Removed service "controller_name_converter"; reason: private alias.
  • Removed service "resolve_controller_name_subscriber"; reason: private alias.
  • Removed service "Symfony\Component\DependencyInjection\ParameterBag\ContainerBagInterface"; reason: private alias.
  • Removed service "Symfony\Component\DependencyInjection\ParameterBag\ParameterBagInterface"; reason: private alias.
  • Removed service "Symfony\Component\EventDispatcher\EventDispatcherInterface"; reason: private alias.
  • Removed service "Symfony\Contracts\EventDispatcher\EventDispatcherInterface"; reason: private alias.
  • Removed service "Symfony\Component\HttpKernel\HttpKernelInterface"; reason: private alias.
  • Removed service "Symfony\Component\HttpFoundation\RequestStack"; reason: private alias.
  • Removed service "Symfony\Component\HttpFoundation\UrlHelper"; reason: private alias.
  • Removed service "Symfony\Component\HttpKernel\KernelInterface"; reason: private alias.
  • Removed service "Symfony\Component\Filesystem\Filesystem"; reason: private alias.
  • Removed service "Symfony\Component\HttpKernel\Config\FileLocator"; reason: private alias.
  • Removed service "Symfony\Component\DependencyInjection\ReverseContainer"; reason: private alias.
  • Removed service "error_renderer.html"; reason: private alias.
  • Removed service "error_renderer"; reason: private alias.
  • Removed service "Psr\Container\ContainerInterface $parameterBag"; reason: private alias.
  • Removed service "Psr\Cache\CacheItemPoolInterface"; reason: private alias.
  • Removed service "Psr\SimpleCache\CacheInterface"; reason: private alias.
  • Removed service "Symfony\Component\Cache\Adapter\AdapterInterface"; reason: private alias.
  • Removed service "Symfony\Contracts\Cache\CacheInterface"; reason: private alias.
  • Removed service "Symfony\Contracts\Cache\TagAwareCacheInterface"; reason: private alias.
  • Removed service "Symfony\Component\Translation\TranslatorInterface"; reason: private alias.
  • Removed service "Symfony\Contracts\Translation\TranslatorInterface"; reason: private alias.
  • Removed service "cache.default_redis_provider"; reason: private alias.
  • Removed service "cache.default_memcached_provider"; reason: private alias.
  • Removed service "cache.default_pdo_provider"; reason: private alias.
  • Removed service "Symfony\Component\HttpFoundation\Session\SessionInterface"; reason: private alias.
  • Removed service "Symfony\Component\HttpFoundation\Session\Storage\SessionStorageInterface"; reason: private alias.
  • Removed service "SessionHandlerInterface"; reason: private alias.
  • Removed service "Symfony\Component\HttpFoundation\Session\Flash\FlashBagInterface"; reason: private alias.
  • Removed service "session.storage.filesystem"; reason: private alias.
  • Removed service "session.storage"; reason: private alias.
  • Removed service "session.handler"; reason: private alias.
  • Removed service "Symfony\Component\Security\Csrf\TokenGenerator\TokenGeneratorInterface"; reason: private alias.
  • Removed service "Symfony\Component\Security\Csrf\TokenStorage\TokenStorageInterface"; reason: private alias.
  • Removed service "Symfony\Component\Security\Csrf\CsrfTokenManagerInterface"; reason: private alias.
  • Removed service "Symfony\Component\Form\ResolvedFormTypeFactoryInterface"; reason: private alias.
  • Removed service "Symfony\Component\Form\FormRegistryInterface"; reason: private alias.
  • Removed service "Symfony\Component\Form\FormFactoryInterface"; reason: private alias.
  • Removed service "form.property_accessor"; reason: private alias.
  • Removed service "form.choice_list_factory"; reason: private alias.
  • Removed service "Symfony\Component\Asset\Packages"; reason: private alias.
  • Removed service "Symfony\Contracts\HttpClient\HttpClientInterface"; reason: private alias.
  • Removed service "Psr\Http\Client\ClientInterface"; reason: private alias.
  • Removed service "Symfony\Component\Validator\Validator\ValidatorInterface"; reason: private alias.
  • Removed service "validator.mapping.class_metadata_factory"; reason: private alias.
  • Removed service "Symfony\Component\Translation\Reader\TranslationReaderInterface"; reason: private alias.
  • Removed service "Symfony\Component\Translation\Extractor\ExtractorInterface"; reason: private alias.
  • Removed service "Symfony\Component\Translation\Writer\TranslationWriterInterface"; reason: private alias.
  • Removed service "translator.formatter"; reason: private alias.
  • Removed service "Symfony\Component\HttpKernel\Debug\FileLinkFormatter"; reason: private alias.
  • Removed service "Symfony\Component\Stopwatch\Stopwatch"; reason: private alias.
  • Removed service "Symfony\Component\Routing\RouterInterface"; reason: private alias.
  • Removed service "Symfony\Component\Routing\Generator\UrlGeneratorInterface"; reason: private alias.
  • Removed service "Symfony\Component\Routing\Matcher\UrlMatcherInterface"; reason: private alias.
  • Removed service "Symfony\Component\Routing\RequestContextAwareInterface"; reason: private alias.
  • Removed service "Symfony\Component\Routing\RequestContext"; reason: private alias.
  • Removed service "annotation_reader"; reason: private alias.
  • Removed service "Doctrine\Common\Annotations\Reader"; reason: private alias.
  • Removed service "Symfony\Component\PropertyAccess\PropertyAccessorInterface"; reason: private alias.
  • Removed service "Symfony\Component\PropertyInfo\PropertyAccessExtractorInterface"; reason: private alias.
  • Removed service "Symfony\Component\PropertyInfo\PropertyDescriptionExtractorInterface"; reason: private alias.
  • Removed service "Symfony\Component\PropertyInfo\PropertyInfoExtractorInterface"; reason: private alias.
  • Removed service "Symfony\Component\PropertyInfo\PropertyTypeExtractorInterface"; reason: private alias.
  • Removed service "Symfony\Component\PropertyInfo\PropertyListExtractorInterface"; reason: private alias.
  • Removed service "Symfony\Component\PropertyInfo\PropertyInitializableExtractorInterface"; reason: private alias.
  • Removed service "Symfony\Component\Mime\MimeTypesInterface"; reason: private alias.
  • Removed service "Symfony\Component\Mime\MimeTypeGuesserInterface"; reason: private alias.
  • Removed service "Symfony\Component\Security\Core\Authorization\AuthorizationCheckerInterface"; reason: private alias.
  • Removed service "Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface"; reason: private alias.
  • Removed service "Symfony\Component\Security\Core\Security"; reason: private alias.
  • Removed service "Symfony\Component\Security\Core\Authentication\AuthenticationManagerInterface"; reason: private alias.
  • Removed service "Symfony\Component\Security\Http\Session\SessionAuthenticationStrategyInterface"; reason: private alias.
  • Removed service "security.encoder_factory"; reason: private alias.
  • Removed service "Symfony\Component\Security\Core\Encoder\EncoderFactoryInterface"; reason: private alias.
  • Removed service "Symfony\Component\Security\Core\Encoder\UserPasswordEncoderInterface"; reason: private alias.
  • Removed service "Symfony\Component\Security\Http\Authentication\AuthenticationUtils"; reason: private alias.
  • Removed service "Symfony\Component\Security\Core\Authorization\AccessDecisionManagerInterface"; reason: private alias.
  • Removed service "Symfony\Component\Security\Core\Role\RoleHierarchyInterface"; reason: private alias.
  • Removed service "Symfony\Component\Security\Http\Firewall"; reason: private alias.
  • Removed service "Symfony\Component\Security\Http\HttpUtils"; reason: private alias.
  • Removed service "Symfony\Component\Security\Guard\GuardAuthenticatorHandler"; reason: private alias.
  • Removed service "security.firewall"; reason: private alias.
  • Removed service "security.user.provider.concrete.cps"; reason: private alias.
  • Removed service "security.authentication.session_strategy.api_login"; reason: private alias.
  • Removed service "security.user_checker.api_login"; reason: private alias.
  • Removed service "security.authentication.session_strategy.api_secure"; reason: private alias.
  • Removed service "security.user_checker.api_secure"; reason: private alias.
  • Removed service "security.authentication.session_strategy.api"; reason: private alias.
  • Removed service "security.user_checker.api"; reason: private alias.
  • Removed service "security.authentication.session_strategy.backend"; reason: private alias.
  • Removed service "security.user_checker.backend"; reason: private alias.
  • Removed service "security.authentication.session_strategy.giscom_api"; reason: private alias.
  • Removed service "security.user_checker.giscom_api"; reason: private alias.
  • Removed service "security.authentication.session_strategy.ez_api"; reason: private alias.
  • Removed service "security.user_checker.ez_api"; reason: private alias.
  • Removed service "security.authentication.session_strategy.print"; reason: private alias.
  • Removed service "security.user_checker.print"; reason: private alias.
  • Removed service "security.authentication.session_strategy.open_login"; reason: private alias.
  • Removed service "security.user_checker.open_login"; reason: private alias.
  • Removed service "security.authentication.session_strategy.main"; reason: private alias.
  • Removed service "security.user_checker.main"; reason: private alias.
  • Removed service "anyx.login_gate.username_resolver"; reason: private alias.
  • Removed service "craue.form.flow.data_manager"; reason: private alias.
  • Removed service "Craue\FormFlowBundle\Util\FormFlowUtil"; reason: private alias.
  • Removed service "Doctrine\DBAL\Driver\Connection"; reason: private alias.
  • Removed service "Doctrine\DBAL\Connection"; reason: private alias.
  • Removed service "Doctrine\Persistence\ManagerRegistry"; reason: private alias.
  • Removed service "Doctrine\Common\Persistence\ManagerRegistry"; reason: private alias.
  • Removed service "doctrine.dbal.event_manager"; reason: private alias.
  • Removed service "Doctrine\DBAL\Connection $defaultConnection"; reason: private alias.
  • Removed service "Doctrine\ORM\EntityManagerInterface"; reason: private alias.
  • Removed service "doctrine.orm.metadata.annotation_reader"; reason: private alias.
  • Removed service "doctrine.orm.default_metadata_cache"; reason: private alias.
  • Removed service "doctrine.orm.default_result_cache"; reason: private alias.
  • Removed service "doctrine.orm.default_query_cache"; reason: private alias.
  • Removed service "Doctrine\ORM\EntityManagerInterface $defaultEntityManager"; reason: private alias.
  • Removed service "doctrine.orm.default_entity_manager.event_manager"; reason: private alias.
  • Removed service "doctrine.migrations.metadata_storage"; reason: private alias.
  • Removed service "GuzzleHttp\ClientInterface $messagesClient"; reason: private alias.
  • Removed service "GuzzleHttp\ClientInterface $protocolloCctClient"; reason: private alias.
  • Removed service "GuzzleHttp\ClientInterface $mypayClient"; reason: private alias.
  • Removed service "GuzzleHttp\ClientInterface $giscomClient"; reason: private alias.
  • Removed service "Exercise\HTMLPurifierBundle\HTMLPurifiersRegistryInterface"; reason: private alias.
  • Removed service "HTMLPurifier"; reason: private alias.
  • Removed service "Flagception\Manager\FeatureManagerInterface"; reason: private alias.
  • Removed service "FOS\RestBundle\View\ViewHandlerInterface"; reason: private alias.
  • Removed service "FOS\RestBundle\Request\ParamFetcherInterface"; reason: private alias.
  • Removed service "jms_serializer.metadata.cache"; reason: private alias.
  • Removed service "jms_serializer.naming_strategy"; reason: private alias.
  • Removed service "jms_serializer.object_constructor"; reason: private alias.
  • Removed service "JMS\Serializer\SerializerInterface"; reason: private alias.
  • Removed service "JMS\Serializer\ArrayTransformerInterface"; reason: private alias.
  • Removed service "jms_serializer.accessor_strategy"; reason: private alias.
  • Removed service "JMS\Serializer\ContextFactory\SerializationContextFactoryInterface"; reason: private alias.
  • Removed service "JMS\Serializer\ContextFactory\DeserializationContextFactoryInterface"; reason: private alias.
  • Removed service "jms_serializer.metadata.file_locator"; reason: private alias.
  • Removed service "jms_serializer.event_dispatcher"; reason: private alias.
  • Removed service "Lexik\Bundle\JWTAuthenticationBundle\Services\JWTTokenInterface"; reason: private alias.
  • Removed service "Lexik\Bundle\JWTAuthenticationBundle\Services\JWTTokenManagerInterface"; reason: private alias.
  • Removed service "Lexik\Bundle\JWTAuthenticationBundle\Services\JWSProvider\JWSProviderInterface"; reason: private alias.
  • Removed service "Lexik\Bundle\JWTAuthenticationBundle\Security\Http\Authentication\AuthenticationSuccessHandler"; reason: private alias.
  • Removed service "Lexik\Bundle\JWTAuthenticationBundle\Security\Http\Authentication\AuthenticationFailureHandler"; reason: private alias.
  • Removed service "Lexik\Bundle\JWTAuthenticationBundle\TokenExtractor\TokenExtractorInterface"; reason: private alias.
  • Removed service "lexik_jwt_authentication.jwt_token_authenticator"; reason: private alias.
  • Removed service "Lexik\Bundle\JWTAuthenticationBundle\Encoder\JWTEncoderInterface"; reason: private alias.
  • Removed service "datatables.renderer"; reason: private alias.
  • Removed service "League\Flysystem\FilesystemInterface $s3Filesystem"; reason: private alias.
  • Removed service "League\Flysystem\FilesystemInterface $localFilesystem"; reason: private alias.
  • Removed service "sensio_framework_extra.converter.doctrine.orm.expression_language"; reason: private alias.
  • Removed service "sensio_framework_extra.security.expression_language"; reason: private alias.
  • Removed service "logger"; reason: private alias.
  • Removed service "Psr\Log\LoggerInterface"; reason: private alias.
  • Removed service "swiftmailer.mailer.default.transport"; reason: private alias.
  • Removed service "swiftmailer.plugin.messagelogger"; reason: private alias.
  • Removed service "swiftmailer.mailer"; reason: private alias.
  • Removed service "Swift_Mailer"; reason: private alias.
  • Removed service "Swift_Transport"; reason: private alias.
  • Removed service "Twig_Environment"; reason: private alias.
  • Removed service "Twig\Environment"; reason: private alias.
  • Removed service "Symfony\WebpackEncoreBundle\Asset\EntrypointLookupCollectionInterface"; reason: private alias.
  • Removed service "Symfony\WebpackEncoreBundle\Asset\EntrypointLookupInterface"; reason: private alias.
  • Removed service "vich_uploader.storage"; reason: private alias.
  • Removed service "Vich\UploaderBundle\Storage\StorageInterface"; reason: private alias.
  • Removed service "Vich\UploaderBundle\Storage\FileSystemStorage"; reason: private alias.
  • Removed service "vich_uploader.metadata_driver"; reason: private alias.
  • Removed service "vich_uploader.metadata.cache"; reason: private alias.
  • Removed service "Vich\UploaderBundle\Mapping\PropertyMappingFactory"; reason: private alias.
  • Removed service "Vich\UploaderBundle\Handler\DownloadHandler"; reason: private alias.
  • Removed service "Vich\UploaderBundle\Handler\UploadHandler"; reason: private alias.
  • Removed service "Vich\UploaderBundle\Storage\FlysystemStorage"; reason: private alias.
  • Removed service "Vich\UploaderBundle\Form\Type\VichFileType"; reason: private alias.
  • Removed service "Vich\UploaderBundle\Form\Type\VichImageType"; reason: private alias.
  • Removed service "twig.loader.filesystem"; reason: private alias.
  • Removed service "argument_resolver.controller_locator"; reason: private alias.
  • Removed service "fos_rest.serializer"; reason: private alias.
  • Removed service "Psr\Log\LoggerInterface $requestLogger"; reason: private alias.
  • Removed service "Psr\Log\LoggerInterface $consoleLogger"; reason: private alias.
  • Removed service "Psr\Log\LoggerInterface $cacheLogger"; reason: private alias.
  • Removed service "Psr\Log\LoggerInterface $httpClientLogger"; reason: private alias.
  • Removed service "Psr\Log\LoggerInterface $translationLogger"; reason: private alias.
  • Removed service "Psr\Log\LoggerInterface $profilerLogger"; reason: private alias.
  • Removed service "Psr\Log\LoggerInterface $phpLogger"; reason: private alias.
  • Removed service "Psr\Log\LoggerInterface $eventLogger"; reason: private alias.
  • Removed service "Psr\Log\LoggerInterface $routerLogger"; reason: private alias.
  • Removed service "Psr\Log\LoggerInterface $securityLogger"; reason: private alias.
  • Removed service "Psr\Log\LoggerInterface $doctrineLogger"; reason: private alias.
  • Removed service "Psr\Log\LoggerInterface $eightPointsGuzzleLogger"; reason: private alias.
  • Removed service "Psr\Log\LoggerInterface $nelmioApiDocLogger"; reason: private alias.
  • Removed service "Psr\Log\LoggerInterface $debugLogger"; reason: private alias.
  • Removed service "twig.loader"; reason: private alias.
  • Removed service "Symfony\Component\String\Slugger\SluggerInterface"; reason: private alias.
  • Removed service ".service_locator.EO8lhEe"; reason: private alias.
  • Removed service ".service_locator.UfK7yB0"; reason: private alias.
  • Removed service ".service_locator.J7o.N2l"; reason: private alias.
  • Removed service ".service_locator.iOEd3Hw"; reason: private alias.
  • Removed service ".service_locator.ISjGRTp"; reason: private alias.
  • Removed service ".service_locator.IfH7iC6"; reason: private alias.
  • Removed service ".service_locator.VxTF88y"; reason: private alias.
  • Removed service ".service_locator.SmKjW5S"; reason: private alias.
  • Removed service ".service_locator.GUe1jd1"; reason: private alias.
  • Removed service ".service_locator.rQ0IcT7"; reason: private alias.
  • Removed service "translator.data_collector.inner"; reason: private alias.
  • Removed service "controller_resolver"; reason: private alias.
  • Removed service "argument_resolver"; reason: private alias.
  • Removed service "security.access.decision_manager"; reason: private alias.
  • Removed service "doctrine.migrations.migrations_factory"; reason: private alias.
  • Removed service "jms_serializer.metadata.doctrine_type_driver.inner"; reason: private alias.
  • Removed service "jms_serializer.metadata.typed_properties_driver.inner"; reason: private alias.
  • Removed service "jms_serializer.doctrine_object_constructor.inner"; reason: private alias.
  • Removed service "var_dumper.cli_dumper"; reason: private alias.
  • Removed service "twig.error_renderer.html.inner"; reason: private alias.
  • Removed service "argument_resolver.request_attribute"; reason: private alias.
  • Removed service "argument_resolver.request"; reason: private alias.
  • Removed service "argument_resolver.session"; reason: private alias.
  • Removed service "security.user_value_resolver"; reason: private alias.
  • Removed service "argument_resolver.service"; reason: private alias.
  • Removed service "argument_resolver.default"; reason: private alias.
  • Removed service "argument_resolver.variadic"; reason: private alias.
  • Removed service "argument_resolver.not_tagged_controller"; reason: private alias.
  • Removed service "http_client"; reason: private alias.
  • Removed service "jms_serializer.form_error_handler"; reason: private alias.
  • Removed service "jms_serializer.metadata.traceable_cache.inner"; reason: private alias.
  • Removed service "jms_serializer.handler_registry"; reason: private alias.
260
Symfony\Component\DependencyInjection\Compiler\ReplaceAliasByActualDefinitionPass
  • Changed reference of service "App\BackOffice\CalendarsBackOffice" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\BackOffice\SubcriptionPaymentsBackOffice" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\BackOffice\SubcriptionsBackOffice" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Controller\Rest\ApplicationsAPIController" previously pointing to "router.default" to "router".
  • Changed reference of service "App\Controller\Rest\DocumentsAPIController" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Controller\Rest\FoldersAPIController" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Controller\Rest\MeetingsAPIController" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Controller\Rest\MessagesAPIController" previously pointing to "router.default" to "router".
  • Changed reference of service "App\Controller\Rest\TenantAPIController" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Controller\Ui\Backend\AdminController" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Controller\Ui\Backend\AdminController" previously pointing to "router.default" to "router".
  • Changed reference of service "App\Controller\Ui\Backend\CalendarsController" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Controller\Ui\Backend\CategoryController" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Controller\Ui\Backend\GeographicAreaController" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Controller\Ui\Backend\OperatoriController" previously pointing to "jms_serializer.serializer" to "jms_serializer".
  • Changed reference of service "App\Controller\Ui\Backend\OperatoriController" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Controller\Ui\Backend\PlaceController" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Controller\Ui\Backend\RecipientController" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Controller\Ui\Backend\SecurityController" previously pointing to "router.default" to "router".
  • Changed reference of service "App\Controller\Ui\Backend\SecurityController" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Controller\Ui\Backend\ServiceController" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Controller\Ui\Backend\ServiceGroupController" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Controller\Ui\Backend\SubscriberController" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Controller\Ui\Backend\UserGroupController" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Controller\Ui\Backend\WebhookController" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Controller\Ui\Frontend\AllegatoController" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Controller\Ui\Frontend\AllegatoController" previously pointing to "router.default" to "router".
  • Changed reference of service "App\Controller\Ui\Frontend\DefaultController" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Controller\Ui\Frontend\DocumentController" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Controller\Ui\Frontend\PraticheController" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Controller\Ui\Frontend\PraticheController" previously pointing to "router.default" to "router".
  • Changed reference of service "App\Controller\Ui\Frontend\ServiziController" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Controller\Ui\Frontend\SubscriptionServicesController" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Controller\Ui\Frontend\SubscriptionsController" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Controller\Ui\Frontend\UserController" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Controller\Ui\Frontend\UserController" previously pointing to "jms_serializer.serializer" to "jms_serializer".
  • Changed reference of service "App\Dto\ApplicationDto" previously pointing to "router.default" to "router".
  • Changed reference of service "App\Dto\ServiceDto" previously pointing to "router.default" to "router".
  • Changed reference of service "App\Dto\ServiceGroupDto" previously pointing to "router.default" to "router".
  • Changed reference of service "App\EventListener\CompleteProfileListener" previously pointing to "router.default" to "router".
  • Changed reference of service "App\EventListener\MeetingLifeCycleListener" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\EventListener\StatusMessagePraticaListener" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\EventListener\TermsAcceptListener" previously pointing to "router.default" to "router".
  • Changed reference of service "App\EventListener\UserSecuritySubscriber" previously pointing to "router.default" to "router".
  • Changed reference of service "App\Form\Admin\CategoryType" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Form\Admin\Ente\EnteType" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Form\Admin\ServiceGroup\ServiceGroupType" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Form\Admin\Servizio\CardDataType" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Form\Admin\Servizio\GeneralDataType" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Form\Admin\Servizio\IntegrationsDataType" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Form\Admin\Servizio\PaymentDataType" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Form\Api\CategoryApiType" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Form\Base\ChooseAllegatoType" previously pointing to "debug.validator" to "validator".
  • Changed reference of service "App\Form\Base\UploadAllegatoType" previously pointing to "debug.validator" to "validator".
  • Changed reference of service "App\Form\CalendarBackofficeType" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Form\CertificatoMatrimonio\CertificatoMatrimonioFlow" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Form\CertificatoMatrimonio\CertificatoMatrimonioFlow" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "App\Form\CertificatoMorte\CertificatoMorteFlow" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Form\CertificatoMorte\CertificatoMorteFlow" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "App\Form\CertificatoNascita\CertificatoNascitaFlow" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Form\CertificatoNascita\CertificatoNascitaFlow" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "App\Form\ChangePasswordType" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Form\DocumentAPIType" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Form\EstrattoMatrimonio\EstrattoMatrimonioFlow" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Form\EstrattoMatrimonio\EstrattoMatrimonioFlow" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "App\Form\EstrattoMorte\EstrattoMorteFlow" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Form\EstrattoMorte\EstrattoMorteFlow" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "App\Form\EstrattoNascita\EstrattoNascitaFlow" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Form\EstrattoNascita\EstrattoNascitaFlow" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "App\Form\Extension\TestiAccompagnatoriProcedura" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Form\ExternalCalendarType" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Form\FormIO\FormIOFlow" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Form\FormIO\FormIOFlow" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "App\Form\FormIO\FormIORenderType" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Form\IscrizioneRegistroAssociazioni\IscrizioneRegistroAssociazioniFlow" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "App\Form\OccupazioneSuoloPubblico\OccupazioneSuoloPubblicoFlow" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "App\Form\OpeningHourType" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Form\Operatore\Base\SignedAllegatoType" previously pointing to "debug.validator" to "validator".
  • Changed reference of service "App\Form\Operatore\CertificatoNascita\CertificatoNascitaOperatoreFlow" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Form\Operatore\CertificatoNascita\CertificatoNascitaOperatoreFlow" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "App\Form\Operatore\Standard\StandardAllegatoNoFirmaFlow" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Form\Operatore\Standard\StandardAllegatoNoFirmaFlow" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "App\Form\Operatore\Standard\StandardOperatoreFlow" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Form\Operatore\Standard\StandardOperatoreFlow" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "App\Form\Operatore\Standard\StandardOperatoreWithSignatureFlow" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Form\Operatore\Standard\StandardOperatoreWithSignatureFlow" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "App\Form\Scia\PraticaEdiliziaAllegatiModuloSciaType" previously pointing to "debug.validator" to "validator".
  • Changed reference of service "App\Form\Scia\PraticaEdiliziaAllegatiTecniciType" previously pointing to "debug.validator" to "validator".
  • Changed reference of service "App\Form\Scia\PraticaEdiliziaModuloSciaType" previously pointing to "debug.validator" to "validator".
  • Changed reference of service "App\Form\Scia\PraticaEdiliziaProvvedimentiType" previously pointing to "debug.validator" to "validator".
  • Changed reference of service "App\Form\Scia\PraticaEdiliziaSoggettiType" previously pointing to "debug.validator" to "validator".
  • Changed reference of service "App\Form\Scia\PraticaEdiliziaVincoliType" previously pointing to "debug.validator" to "validator".
  • Changed reference of service "App\Form\Scia\SciaPraticaEdiliziaFlow" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Form\Scia\SciaPraticaEdiliziaFlow" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "App\Form\Security\NewPasswordType" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Form\ServizioFormType" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Form\SubscriptionPaymentType" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Form\SubscriptionServiceType" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Handlers\Servizio\DefaultHandler" previously pointing to "router.default" to "router".
  • Changed reference of service "App\Handlers\Servizio\ImisHandler" previously pointing to "router.default" to "router".
  • Changed reference of service "App\Payment\Gateway\GenericExternalPay" previously pointing to "router.default" to "router".
  • Changed reference of service "App\Payment\Gateway\GenericExternalPay" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Payment\Gateway\MyPay" previously pointing to "router.default" to "router".
  • Changed reference of service "App\Payment\Gateway\MyPay" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Protocollo\PecProtocolloHandler" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Security\LoginFormAuthenticator" previously pointing to "router.default" to "router".
  • Changed reference of service "App\Security\LoginFormAuthenticator" previously pointing to "security.user_password_encoder.generic" to "security.password_encoder".
  • Changed reference of service "App\Services\BreadcrumbsService" previously pointing to "WhiteOctober\BreadcrumbsBundle\Model\Breadcrumbs" to "white_october_breadcrumbs".
  • Changed reference of service "App\Services\BreadcrumbsService" previously pointing to "router.default" to "router".
  • Changed reference of service "App\Services\FileService\AllegatoFileService" previously pointing to "oneup_flysystem.s3_filesystem_filesystem" to "s3_filesystem".
  • Changed reference of service "App\Services\FileService\DocumentFileService" previously pointing to "oneup_flysystem.s3_filesystem_filesystem" to "s3_filesystem".
  • Changed reference of service "App\Services\FileService\ServiceAttachmentsFileService" previously pointing to "oneup_flysystem.s3_filesystem_filesystem" to "s3_filesystem".
  • Changed reference of service "App\Services\FileSystemService" previously pointing to "oneup_flysystem.s3_filesystem_filesystem" to "s3_filesystem".
  • Changed reference of service "App\Services\GiscomAPIMapperService" previously pointing to "router.default" to "router".
  • Changed reference of service "App\Services\KafkaService" previously pointing to "router.default" to "router".
  • Changed reference of service "App\Services\KafkaService" previously pointing to "jms_serializer.serializer" to "jms_serializer".
  • Changed reference of service "App\Services\Manager\CalendarManager" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "App\Services\Manager\MessageManager" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Services\Manager\MessageManager" previously pointing to "router.default" to "router".
  • Changed reference of service "App\Services\Manager\MessageManager" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "App\Services\Manager\PraticaManager" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Services\Manager\ServiceManager" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "App\Services\Manager\ServiceManager" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Services\Manager\UserManager" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Services\Manager\UserManager" previously pointing to "router.default" to "router".
  • Changed reference of service "App\Services\Manager\UserManager" previously pointing to "security.user_password_encoder.generic" to "security.password_encoder".
  • Changed reference of service "App\Services\MeetingService" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Services\MeetingService" previously pointing to "router.default" to "router".
  • Changed reference of service "App\Services\MeetingService" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "App\Services\ModuloPdfBuilderService" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Services\ModuloPdfBuilderService" previously pointing to "router.default" to "router".
  • Changed reference of service "App\Services\MyPayService" previously pointing to "router.default" to "router".
  • Changed reference of service "App\Services\PaymentService" previously pointing to "router.default" to "router".
  • Changed reference of service "App\Services\PraticaIntegrationService" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Services\PraticaPlaceholderService" previously pointing to "router.default" to "router".
  • Changed reference of service "App\Services\PraticaPlaceholderService" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Services\PraticaStatusService" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "App\Services\PraticaStatusService" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Services\ProtocolloService" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "App\Services\ReminderService" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Services\ReminderService" previously pointing to "router.default" to "router".
  • Changed reference of service "App\Services\SubscriptionsService" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Services\SubscriptionsService" previously pointing to "router.default" to "router".
  • Changed reference of service "App\Services\WebhookService" previously pointing to "router.default" to "router".
  • Changed reference of service "App\Services\WebhookService" previously pointing to "jms_serializer.serializer" to "jms_serializer".
  • Changed reference of service "App\Twig\TimeAgo" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "App\Validator\Constraints\ValidMimeTypeValidator" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "ocsdc.filesystem" previously pointing to "oneup_flysystem.s3_filesystem_filesystem" to "s3_filesystem".
  • Changed reference of service "ocsdc.pat.authenticator" previously pointing to "router.default" to "router".
  • Changed reference of service "ocsdc.openlogin.authenticator" previously pointing to "router.default" to "router".
  • Changed reference of service "ocsdc.dedalogin.authenticator" previously pointing to "router.default" to "router".
  • Changed reference of service "ocsdc.cas.authenticator" previously pointing to "router.default" to "router".
  • Changed reference of service "ocsdc.token.authenticator" previously pointing to "router.default" to "router".
  • Changed reference of service "ocsdc.locale_rewrite_listener" previously pointing to "router.default" to "router".
  • Changed reference of service "ocsdc.locale_rewrite_listener" previously pointing to "router.default" to "router".
  • Changed reference of service "ocsdc.redirect.after.login" previously pointing to "router.default" to "router".
  • Changed reference of service "ocsdc.mailer" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "ocsdc.io_service" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "ocsdc.io_service" previously pointing to "router.default" to "router".
  • Changed reference of service "App\Form\Scia\PraticaEdiliziaUlterioriAllegatiTecniciType" previously pointing to "debug.validator" to "validator".
  • Changed reference of service "ocsdc.form.flow.pratica" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "ocsdc.form.flow.pratica" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "ocsdc.form.flow.praticaoperatore" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "ocsdc.form.flow.praticaoperatore" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "ocsdc.giscom_api.mapper" previously pointing to "router.default" to "router".
  • Changed reference of service "ocsdc.logout_success_handler" previously pointing to "router.default" to "router".
  • Changed reference of service "locale_listener" previously pointing to "router.default" to "router".
  • Changed reference of service "http_kernel" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "services_resetter" previously pointing to "debug.validator" to "validator".
  • Changed reference of service "services_resetter" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "services_resetter" previously pointing to "fos_rest.view_handler.default" to "fos_rest.view_handler".
  • Changed reference of service "services_resetter" previously pointing to "WhiteOctober\BreadcrumbsBundle\Model\Breadcrumbs" to "white_october_breadcrumbs".
  • Changed reference of service "fragment.renderer.inline" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "console.command.event_dispatcher_debug" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "console.command.router_debug" previously pointing to "router.default" to "router".
  • Changed reference of service "console.command.router_match" previously pointing to "router.default" to "router".
  • Changed reference of service "console.command.translation_debug" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "form.type_guesser.validator" previously pointing to "debug.validator" to "validator".
  • Changed reference of service "form.type.choice" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "form.type.file" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "form.type_extension.form.transformation_failure_handling" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "form.type_extension.form.validator" previously pointing to "debug.validator" to "validator".
  • Changed reference of service "form.type_extension.upload.validator" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "form.type_extension.csrf" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "validator.builder" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "data_collector.events" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "data_collector.validator" previously pointing to "debug.validator" to "validator".
  • Changed reference of service "data_collector.translation" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "router_listener" previously pointing to "router.default" to "router".
  • Changed reference of service "Symfony\Bundle\FrameworkBundle\Controller\RedirectController" previously pointing to "router.default" to "router".
  • Changed reference of service "security.authentication.manager" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "security.logout_url_generator" previously pointing to "router.default" to "router".
  • Changed reference of service "security.http_utils" previously pointing to "router.default" to "router".
  • Changed reference of service "security.http_utils" previously pointing to "router.default" to "router".
  • Changed reference of service "security.context_listener" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "security.authentication.listener.abstract" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "security.authentication.listener.form" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "security.authentication.listener.form" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "security.authentication.listener.simple_form" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "security.authentication.listener.simple_preauth" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "security.authentication.listener.x509" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "security.authentication.listener.json" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "security.authentication.listener.json" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "security.authentication.listener.remote_user" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "security.authentication.switchuser_listener" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "security.authentication.listener.rememberme" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "security.authentication.guard_handler" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "security.authentication.provider.guard" previously pointing to "security.user_password_encoder.generic" to "security.password_encoder".
  • Changed reference of service "debug.security.firewall" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "security.authentication.listener.json.api_login" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "security.authentication.listener.json.api_login" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "security.authentication.provider.guard.api_secure" previously pointing to "security.user_password_encoder.generic" to "security.password_encoder".
  • Changed reference of service "security.authentication.provider.guard.api" previously pointing to "security.user_password_encoder.generic" to "security.password_encoder".
  • Changed reference of service "security.context_listener.0" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "security.authentication.provider.guard.backend" previously pointing to "security.user_password_encoder.generic" to "security.password_encoder".
  • Changed reference of service "security.authentication.listener.form.backend" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "security.authentication.listener.form.backend" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "security.context_listener.1" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "security.context_listener.2" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "security.context_listener.3" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "security.authentication.provider.guard.open_login" previously pointing to "security.user_password_encoder.generic" to "security.password_encoder".
  • Changed reference of service "security.context_listener.4" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "craue.form.flow.data_manager_default" previously pointing to "craue.form.flow.storage_default" to "craue.form.flow.storage".
  • Changed reference of service "craue.form.flow" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "craue.form.flow.event_listener.previous_step_invalid" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "craue.form.flow.event_listener.flow_expired" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "eight_points_guzzle.middleware.event_dispatch.messages" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "eight_points_guzzle.middleware.event_dispatch.protocollo_cct" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "eight_points_guzzle.middleware.event_dispatch.mypay" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "eight_points_guzzle.middleware.event_dispatch.giscom" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "fos_rest.request.param_fetcher" previously pointing to "debug.validator" to "validator".
  • Changed reference of service "fos_rest.serializer.jms" previously pointing to "jms_serializer.serializer" to "jms_serializer".
  • Changed reference of service "fos_rest.serializer.jms" previously pointing to "jms_serializer.configured_serialization_context_factory" to "jms_serializer.serialization_context_factory".
  • Changed reference of service "fos_rest.serializer.jms" previously pointing to "jms_serializer.configured_deserialization_context_factory" to "jms_serializer.deserialization_context_factory".
  • Changed reference of service "fos_rest.view_response_listener" previously pointing to "fos_rest.view_handler.default" to "fos_rest.view_handler".
  • Changed reference of service "fos_rest.versioning.exclusion_listener" previously pointing to "fos_rest.view_handler.default" to "fos_rest.view_handler".
  • Changed reference of service "fos_rest.allowed_methods_loader" previously pointing to "router.default" to "router".
  • Changed reference of service "jms_serializer.metadata.service_locator" previously pointing to "jms_serializer.metadata.typed_properties_driver" to "jms_serializer.metadata_driver".
  • Changed reference of service "jms_serializer.twig_extension.serializer_runtime_helper" previously pointing to "jms_serializer.serializer" to "jms_serializer".
  • Changed reference of service "lexik_jwt_authentication.security.authentication.provider" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "lexik_jwt_authentication.security.authentication.listener" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "lexik_jwt_authentication.jws_provider.default" previously pointing to "lexik_jwt_authentication.key_loader.raw" to "lexik_jwt_authentication.key_loader".
  • Changed reference of service "lexik_jwt_authentication.jwt_manager" previously pointing to "lexik_jwt_authentication.encoder.lcobucci" to "lexik_jwt_authentication.encoder".
  • Changed reference of service "lexik_jwt_authentication.jwt_manager" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "lexik_jwt_authentication.jws_provider.lcobucci" previously pointing to "lexik_jwt_authentication.key_loader.raw" to "lexik_jwt_authentication.key_loader".
  • Changed reference of service "lexik_jwt_authentication.handler.authentication_success" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "lexik_jwt_authentication.handler.authentication_failure" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "lexik_jwt_authentication.handler.authentication_failure" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "lexik_jwt_authentication.security.jwt_authenticator" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "lexik_jwt_authentication.security.jwt_authenticator" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "lexik_jwt_authentication.security.guard.jwt_token_authenticator" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "lexik_jwt_authentication.security.guard.jwt_token_authenticator" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "lexik_jwt_authentication.check_config_command" previously pointing to "lexik_jwt_authentication.key_loader.raw" to "lexik_jwt_authentication.key_loader".
  • Changed reference of service "nelmio_api_doc.routes.default" previously pointing to "router.default" to "router".
  • Changed reference of service "Omines\DataTablesBundle\Exporter\DataTableExporterManager" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "Omines\DataTablesBundle\DataTableFactory" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "Omines\DataTablesBundle\Twig\DataTablesExtension" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "oneup_flysystem.mount_manager" previously pointing to "oneup_flysystem.s3_filesystem_filesystem" to "s3_filesystem".
  • Changed reference of service "oneup_flysystem.mount_manager" previously pointing to "oneup_flysystem.local_filesystem_filesystem" to "local_filesystem".
  • Changed reference of service "maker.event_registry" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "maker.maker.make_registration_form" previously pointing to "router.default" to "router".
  • Changed reference of service "swiftmailer.mailer.abstract" previously pointing to "swiftmailer.mailer.default.transport.dynamic" to "swiftmailer.transport".
  • Changed reference of service "swiftmailer.mailer.default" previously pointing to "swiftmailer.mailer.default.transport.dynamic" to "swiftmailer.transport".
  • Changed reference of service "twig.extension.trans" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "twig.extension.routing" previously pointing to "router.default" to "router".
  • Changed reference of service "webpack_encore.tag_renderer" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "vich_uploader.upload_handler" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "bazinga.jstranslation.controller" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "white_october_breadcrumbs.helper" previously pointing to "WhiteOctober\BreadcrumbsBundle\Model\Breadcrumbs" to "white_october_breadcrumbs".
  • Changed reference of service "web_profiler.controller.profiler" previously pointing to "router.default" to "router".
  • Changed reference of service "web_profiler.controller.router" previously pointing to "router.default" to "router".
  • Changed reference of service "debug.file_link_formatter.url_format" previously pointing to "router.default" to "router".
  • Changed reference of service "web_profiler.debug_toolbar" previously pointing to "router.default" to "router".
  • Changed reference of service ".service_locator.RGIiAl4" previously pointing to "fos_rest.view_handler.default" to "fos_rest.view_handler".
  • Changed reference of service ".service_locator.ccM2MGC" previously pointing to "security.user_password_encoder.generic" to "security.password_encoder".
  • Changed reference of service ".service_locator.zSk.pnk" previously pointing to "security.user_password_encoder.generic" to "security.password_encoder".
  • Changed reference of service "debug.security.voter.security.access.authenticated_voter" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "debug.security.voter.security.access.role_hierarchy_voter" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "debug.security.voter.security.access.expression_voter" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "debug.security.voter.App\Security\Voters\ApplicationVoter" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "debug.security.voter.App\Security\Voters\AttachmentVoter" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "debug.security.voter.App\Security\Voters\BackofficeVoter" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "debug.security.voter.App\Security\Voters\CalendarVoter" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "debug.security.voter.App\Security\Voters\DocumentVoter" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "debug.security.voter.App\Security\Voters\FolderVoter" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "debug.security.voter.App\Security\Voters\MeetingVoter" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "debug.security.voter.App\Security\Voters\MessageVoter" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "debug.security.voter.App\Security\Voters\SubscriberVoter" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "debug.security.voter.App\Security\Voters\SubscriptionVoter" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service "debug.security.voter.App\Security\Voters\UserVoter" previously pointing to "debug.event_dispatcher" to "event_dispatcher".
  • Changed reference of service ".service_locator.vdmMuyE" previously pointing to "router.default" to "router".
  • Changed reference of service ".service_locator.hyz4CBf" previously pointing to "fos_rest.view_handler.default" to "fos_rest.view_handler".
  • Changed reference of service ".service_locator.hyz4CBf" previously pointing to "router.default" to "router".
  • Changed reference of service ".service_locator.XSes1R5" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service ".service_locator.m90YCjy" previously pointing to "router.default" to "router".
  • Changed reference of service "fos_rest.serializer.form_error_handler.inner" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "fos_rest.view_handler" previously pointing to "router.default" to "router".
  • Changed reference of service "jms_serializer" previously pointing to "jms_serializer.configured_serialization_context_factory" to "jms_serializer.serialization_context_factory".
  • Changed reference of service "jms_serializer" previously pointing to "jms_serializer.configured_deserialization_context_factory" to "jms_serializer.deserialization_context_factory".
  • Changed reference of service "white_october_breadcrumbs" previously pointing to "router.default" to "router".
  • Changed reference of service "console.command.public_alias.App\Command\AdministratorCreateCommand" previously pointing to "security.user_password_encoder.generic" to "security.password_encoder".
  • Changed reference of service "console.command.public_alias.App\Command\ChangeApplicationStatusCommand" previously pointing to "router.default" to "router".
  • Changed reference of service "console.command.public_alias.App\Command\ConfigureInstanceCommand" previously pointing to "security.user_password_encoder.generic" to "security.password_encoder".
  • Changed reference of service "console.command.public_alias.App\Command\GeneratePdfCommand" previously pointing to "router.default" to "router".
  • Changed reference of service "console.command.public_alias.App\Command\GeneratePdfCommand" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "console.command.public_alias.App\Command\OperatoreCreateCommand" previously pointing to "security.user_password_encoder.generic" to "security.password_encoder".
  • Changed reference of service "console.command.public_alias.App\Command\ProduceKafkaMessagesCommand" previously pointing to "router.default" to "router".
  • Changed reference of service "console.command.public_alias.App\Command\RemoveTooManyPdfCommand" previously pointing to "router.default" to "router".
  • Changed reference of service "console.command.public_alias.App\Command\RemoveTooManyPdfCommand" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "console.command.public_alias.App\Command\ScheduledActionCommand" previously pointing to "router.default" to "router".
  • Changed reference of service "console.command.public_alias.App\Command\ScheduledActionCommand" previously pointing to "translator.data_collector" to "translator".
  • Changed reference of service "console.command.public_alias.App\Command\SecureUserCommand" previously pointing to "router.default" to "router".
312
Symfony\Component\DependencyInjection\Compiler\RemoveAbstractDefinitionsPass
  • Removed service "cache.adapter.system"; reason: abstract.
  • Removed service "cache.adapter.apcu"; reason: abstract.
  • Removed service "cache.adapter.doctrine"; reason: abstract.
  • Removed service "cache.adapter.filesystem"; reason: abstract.
  • Removed service "cache.adapter.psr6"; reason: abstract.
  • Removed service "cache.adapter.redis"; reason: abstract.
  • Removed service "cache.adapter.memcached"; reason: abstract.
  • Removed service "cache.adapter.pdo"; reason: abstract.
  • Removed service "cache.adapter.array"; reason: abstract.
  • Removed service "assets.path_package"; reason: abstract.
  • Removed service "assets.url_package"; reason: abstract.
  • Removed service "assets.static_version_strategy"; reason: abstract.
  • Removed service "assets.json_manifest_version_strategy"; reason: abstract.
  • Removed service "security.firewall.context"; reason: abstract.
  • Removed service "security.firewall.lazy_context"; reason: abstract.
  • Removed service "security.firewall.config"; reason: abstract.
  • Removed service "security.user.provider.missing"; reason: abstract.
  • Removed service "security.user.provider.in_memory"; reason: abstract.
  • Removed service "security.user.provider.in_memory.user"; reason: abstract.
  • Removed service "security.user.provider.ldap"; reason: abstract.
  • Removed service "security.user.provider.chain"; reason: abstract.
  • Removed service "security.logout_listener"; reason: abstract.
  • Removed service "security.logout.handler.cookie_clearing"; reason: abstract.
  • Removed service "security.logout.success_handler"; reason: abstract.
  • Removed service "security.authentication.form_entry_point"; reason: abstract.
  • Removed service "security.authentication.listener.abstract"; reason: abstract.
  • Removed service "security.authentication.custom_success_handler"; reason: abstract.
  • Removed service "security.authentication.success_handler"; reason: abstract.
  • Removed service "security.authentication.custom_failure_handler"; reason: abstract.
  • Removed service "security.authentication.failure_handler"; reason: abstract.
  • Removed service "security.authentication.listener.form"; reason: abstract.
  • Removed service "security.authentication.listener.simple_form"; reason: abstract.
  • Removed service "security.authentication.simple_success_failure_handler"; reason: abstract.
  • Removed service "security.authentication.listener.simple_preauth"; reason: abstract.
  • Removed service "security.authentication.listener.x509"; reason: abstract.
  • Removed service "security.authentication.listener.json"; reason: abstract.
  • Removed service "security.authentication.listener.remote_user"; reason: abstract.
  • Removed service "security.authentication.listener.basic"; reason: abstract.
  • Removed service "security.authentication.provider.dao"; reason: abstract.
  • Removed service "security.authentication.provider.ldap_bind"; reason: abstract.
  • Removed service "security.authentication.provider.simple"; reason: abstract.
  • Removed service "security.authentication.provider.pre_authenticated"; reason: abstract.
  • Removed service "security.exception_listener"; reason: abstract.
  • Removed service "security.authentication.switchuser_listener"; reason: abstract.
  • Removed service "security.authentication.listener.rememberme"; reason: abstract.
  • Removed service "security.authentication.provider.rememberme"; reason: abstract.
  • Removed service "security.authentication.rememberme.services.abstract"; reason: abstract.
  • Removed service "security.authentication.rememberme.services.persistent"; reason: abstract.
  • Removed service "security.authentication.rememberme.services.simplehash"; reason: abstract.
  • Removed service "security.authentication.provider.guard"; reason: abstract.
  • Removed service "security.authentication.listener.guard"; reason: abstract.
  • Removed service "doctrine.dbal.logger.profiling"; reason: abstract.
  • Removed service "doctrine.dbal.logger.backtrace"; reason: abstract.
  • Removed service "doctrine.dbal.connection"; reason: abstract.
  • Removed service "doctrine.dbal.connection.event_manager"; reason: abstract.
  • Removed service "doctrine.dbal.connection.configuration"; reason: abstract.
  • Removed service "doctrine.dbal.schema_asset_filter_manager"; reason: abstract.
  • Removed service "doctrine.orm.configuration"; reason: abstract.
  • Removed service "doctrine.orm.entity_manager.abstract"; reason: abstract.
  • Removed service "doctrine.orm.manager_configurator.abstract"; reason: abstract.
  • Removed service "doctrine.orm.security.user.provider"; reason: abstract.
  • Removed service "fos_rest.format_request_matcher"; reason: abstract.
  • Removed service "jms_serializer.version_exclusion_strategy"; reason: abstract.
  • Removed service "lexik_jwt_authentication.key_loader.abstract"; reason: abstract.
  • Removed service "lexik_jwt_authentication.security.jwt_authenticator"; reason: abstract.
  • Removed service "oneup_flysystem.adapter.local"; reason: abstract.
  • Removed service "oneup_flysystem.adapter.cached"; reason: abstract.
  • Removed service "oneup_flysystem.adapter.nulladapter"; reason: abstract.
  • Removed service "oneup_flysystem.adapter.memory"; reason: abstract.
  • Removed service "oneup_flysystem.adapter.zip"; reason: abstract.
  • Removed service "oneup_flysystem.adapter.async_aws_s3"; reason: abstract.
  • Removed service "oneup_flysystem.adapter.awss3v2"; reason: abstract.
  • Removed service "oneup_flysystem.adapter.awss3v3"; reason: abstract.
  • Removed service "oneup_flysystem.adapter.azureblob"; reason: abstract.
  • Removed service "oneup_flysystem.adapter.dropbox"; reason: abstract.
  • Removed service "oneup_flysystem.adapter.googlecloudstorage"; reason: abstract.
  • Removed service "oneup_flysystem.adapter.rackspace"; reason: abstract.
  • Removed service "oneup_flysystem.adapter.webdav"; reason: abstract.
  • Removed service "oneup_flysystem.adapter.ftp"; reason: abstract.
  • Removed service "oneup_flysystem.adapter.sftp"; reason: abstract.
  • Removed service "oneup_flysystem.adapter.gridfs"; reason: abstract.
  • Removed service "oneup_flysystem.adapter.fallback"; reason: abstract.
  • Removed service "oneup_flysystem.adapter.gaufrette"; reason: abstract.
  • Removed service "oneup_flysystem.adapter.replicate"; reason: abstract.
  • Removed service "oneup_flysystem.filesystem"; reason: abstract.
  • Removed service "oneup_flysystem.cache.adapter"; reason: abstract.
  • Removed service "oneup_flysystem.cache.memory"; reason: abstract.
  • Removed service "oneup_flysystem.cache.noop"; reason: abstract.
  • Removed service "oneup_flysystem.cache.memcached"; reason: abstract.
  • Removed service "oneup_flysystem.cache.predis"; reason: abstract.
  • Removed service "oneup_flysystem.cache.php_redis"; reason: abstract.
  • Removed service "oneup_flysystem.cache.stash"; reason: abstract.
  • Removed service "oneup_flysystem.cache.psr6"; reason: abstract.
  • Removed service "maker.auto_command.abstract"; reason: abstract.
  • Removed service "monolog.logger_prototype"; reason: abstract.
  • Removed service "monolog.activation_strategy.not_found"; reason: abstract.
  • Removed service "monolog.handler.fingers_crossed.error_level_activation_strategy"; reason: abstract.
  • Removed service "swiftmailer.mailer.abstract"; reason: abstract.
  • Removed service "swiftmailer.transport.smtp.configurator.abstract"; reason: abstract.
  • Removed service "swiftmailer.transport.sendmail.abstract"; reason: abstract.
  • Removed service "swiftmailer.transport.null.abstract"; reason: abstract.
  • Removed service "swiftmailer.transport.buffer.abstract"; reason: abstract.
  • Removed service "swiftmailer.transport.authhandler.abstract"; reason: abstract.
  • Removed service "swiftmailer.transport.eventdispatcher.abstract"; reason: abstract.
  • Removed service "swiftmailer.plugin.redirecting.abstract"; reason: abstract.
  • Removed service "swiftmailer.plugin.antiflood.abstract"; reason: abstract.
  • Removed service "swiftmailer.plugin.impersonate.abstract"; reason: abstract.
  • Removed service "swiftmailer.plugin.messagelogger.abstract"; reason: abstract.
  • Removed service "swiftmailer.transport.smtp.abstract"; reason: abstract.
  • Removed service "swiftmailer.transport.spool.abstract"; reason: abstract.
  • Removed service "swiftmailer.spool.file.abstract"; reason: abstract.
  • Removed service "swiftmailer.spool.memory.abstract"; reason: abstract.
  • Removed service "vich_uploader.listener.doctrine.base"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\AdministratorCreateCommand"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Command\AdministratorCreateCommand"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\ChangeApplicationStatusCommand"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Command\ChangeApplicationStatusCommand"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\ConfigureInstanceCommand"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Command\ConfigureInstanceCommand"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\CreateSubscriptionPaymentDraftsCommand"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Command\CreateSubscriptionPaymentDraftsCommand"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\DeleteDraftMeetingsCommand"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Command\DeleteDraftMeetingsCommand"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\FixPeoPaymentSettingsCommand"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Command\FixPeoPaymentSettingsCommand"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\FixPrivacyAndCategoriesCommand"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Command\FixPrivacyAndCategoriesCommand"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\FixUserPlaceOfBirthAsCodeCommand"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Command\FixUserPlaceOfBirthAsCodeCommand"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\GeneratePdfCommand"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Command\GeneratePdfCommand"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\HotFixI18nSyncCommand"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Command\HotFixI18nSyncCommand"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\HotFixMigratePaymentTypeCommand"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Command\HotFixMigratePaymentTypeCommand"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\HotFixMissingErogatoreCommand"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Command\HotFixMissingErogatoreCommand"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\HotFixStatusConsistencyCommand"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Command\HotFixStatusConsistencyCommand"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\HotFixSubscriberBirthDateFromFiscalCodeCommand"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Command\HotFixSubscriberBirthDateFromFiscalCodeCommand"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\HotFixZeroMeetingQueueCommand"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Command\HotFixZeroMeetingQueueCommand"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\I18nMigrationsCommand"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Command\I18nMigrationsCommand"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\OperatoreAbilitaServizioCommand"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Command\OperatoreAbilitaServizioCommand"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\OperatoreCreateCommand"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Command\OperatoreCreateCommand"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\PopulateServiceShortDescriptionCommand"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Command\PopulateServiceShortDescriptionCommand"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\ProduceKafkaMessagesCommand"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Command\ProduceKafkaMessagesCommand"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\ProtocolloConfigureCommand"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Command\ProtocolloConfigureCommand"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\RemoveTooManyPdfCommand"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Command\RemoveTooManyPdfCommand"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\ScheduledActionCommand"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Command\ScheduledActionCommand"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\SecureUserCommand"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Command\SecureUserCommand"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\SendPraticaToGiscomCommand"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Command\SendPraticaToGiscomCommand"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Console\Command\Command.0.App\Command\ServizioCreateCommand"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Command\ServizioCreateCommand"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\General\MetricsController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\General\MetricsController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\General\MetricsController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\General\SecurityController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\General\SecurityController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\General\SecurityController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\APIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\APIController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Rest\APIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\ApplicationsAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\ApplicationsAPIController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Rest\ApplicationsAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\CalendarsAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\CalendarsAPIController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Rest\CalendarsAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\CategoriesAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\CategoriesAPIController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Rest\CategoriesAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\DocumentsAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\DocumentsAPIController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Rest\DocumentsAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\FoldersAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\FoldersAPIController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Rest\FoldersAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\GeographicAreasAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\GeographicAreasAPIController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Rest\GeographicAreasAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\GiscomAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\GiscomAPIController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Rest\GiscomAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\MeetingsAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\MeetingsAPIController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Rest\MeetingsAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\MessagesAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\MessagesAPIController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Rest\MessagesAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\PaymentsAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\PaymentsAPIController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Rest\PaymentsAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\PlacesAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\PlacesAPIController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Rest\PlacesAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\RecipientsAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\RecipientsAPIController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Rest\RecipientsAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\ServicesAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\ServicesAPIController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Rest\ServicesAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\ServicesGroupAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\ServicesGroupAPIController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Rest\ServicesGroupAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\SessionAuthAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\SessionAuthAPIController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Rest\SessionAuthAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\StatusAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\StatusAPIController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Rest\StatusAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\SubscribersAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\SubscribersAPIController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Rest\SubscribersAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\SubscriptionServicesAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\SubscriptionServicesAPIController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Rest\SubscriptionServicesAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\SubscriptionsAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\SubscriptionsAPIController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Rest\SubscriptionsAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\TenantAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\TenantAPIController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Rest\TenantAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\UserGroupsAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\UserGroupsAPIController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Rest\UserGroupsAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Rest\UsersAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Rest\UsersAPIController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Rest\UsersAPIController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\AdminController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\AdminController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Ui\Backend\AdminController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\CalendarsController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\CalendarsController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Ui\Backend\CalendarsController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\CategoryController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\CategoryController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Ui\Backend\CategoryController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\GeographicAreaController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\GeographicAreaController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Ui\Backend\GeographicAreaController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\OperatoriController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\OperatoriController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Ui\Backend\OperatoriController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\PlaceController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\PlaceController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Ui\Backend\PlaceController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\RecipientController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\RecipientController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Ui\Backend\RecipientController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\SecurityController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\SecurityController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Ui\Backend\SecurityController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\ServiceController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\ServiceController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Ui\Backend\ServiceController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\ServiceGroupController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\ServiceGroupController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Ui\Backend\ServiceGroupController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\SubscriberController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\SubscriberController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Ui\Backend\SubscriberController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\UserGroupController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\UserGroupController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Ui\Backend\UserGroupController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Backend\WebhookController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Backend\WebhookController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Ui\Backend\WebhookController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Frontend\AllegatoController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Frontend\AllegatoController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Ui\Frontend\AllegatoController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Frontend\DefaultController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Frontend\DefaultController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Ui\Frontend\DefaultController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Frontend\DocumentController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Frontend\DocumentController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Ui\Frontend\DocumentController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Frontend\PraticheController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Frontend\PraticheController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Ui\Frontend\PraticheController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Frontend\PrintController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Frontend\PrintController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Ui\Frontend\PrintController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Frontend\SearchController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Frontend\SearchController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Ui\Frontend\SearchController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Frontend\ServiziController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Frontend\ServiziController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Ui\Frontend\ServiziController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Frontend\SubscriptionServicesController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Frontend\SubscriptionServicesController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Ui\Frontend\SubscriptionServicesController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Frontend\SubscriptionsController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Frontend\SubscriptionsController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Ui\Frontend\SubscriptionsController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Frontend\TrackingController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Frontend\TrackingController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Ui\Frontend\TrackingController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ServiceSubscriberInterface.0.App\Controller\Ui\Frontend\UserController"; reason: abstract.
  • Removed service ".instanceof.Symfony\Bundle\FrameworkBundle\Controller\AbstractController.0.App\Controller\Ui\Frontend\UserController"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Controller\Ui\Frontend\UserController"; reason: abstract.
  • Removed service ".instanceof.Doctrine\Bundle\FixturesBundle\ORMFixtureInterface.0.App\DataFixtures\AppFixtures"; reason: abstract.
  • Removed service ".abstract.instanceof.App\DataFixtures\AppFixtures"; reason: abstract.
  • Removed service ".instanceof.Omines\DataTablesBundle\DataTableTypeInterface.0.App\DataTable\PraticaTableType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\DataTable\PraticaTableType"; reason: abstract.
  • Removed service ".instanceof.Omines\DataTablesBundle\DataTableTypeInterface.0.App\DataTable\ScheduledActionTableType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\DataTable\ScheduledActionTableType"; reason: abstract.
  • Removed service ".instanceof.Omines\DataTablesBundle\DataTableTypeInterface.0.App\DataTable\ServiceTableType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\DataTable\ServiceTableType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\EventDispatcher\EventSubscriberInterface.0.App\EventListener\GiscomSendPraticaListener"; reason: abstract.
  • Removed service ".abstract.instanceof.App\EventListener\GiscomSendPraticaListener"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\EventDispatcher\EventSubscriberInterface.0.App\EventListener\ProtocolloSuccessSubscriber"; reason: abstract.
  • Removed service ".abstract.instanceof.App\EventListener\ProtocolloSuccessSubscriber"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\EventDispatcher\EventSubscriberInterface.0.App\EventListener\UserSecuritySubscriber"; reason: abstract.
  • Removed service ".abstract.instanceof.App\EventListener\UserSecuritySubscriber"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\AdditionalDataType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\AdditionalDataType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\CategoryType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Admin\CategoryType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\ContactPointType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Admin\ContactPointType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Ente\DefaultProtocolSettingsType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Admin\Ente\DefaultProtocolSettingsType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Ente\EnteType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Admin\Ente\EnteType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Ente\MailerType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Admin\Ente\MailerType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Ente\WebhookType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Admin\Ente\WebhookType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\GeographicAreaType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Admin\GeographicAreaType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\PlaceType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Admin\PlaceType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\RecipientType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Admin\RecipientType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\ServiceGroup\ServiceGroupType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Admin\ServiceGroup\ServiceGroupType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Servizio\CardDataType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Admin\Servizio\CardDataType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Servizio\FeedbackMessagesDataType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Admin\Servizio\FeedbackMessagesDataType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Servizio\FeedbackMessagesSettingsType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Admin\Servizio\FeedbackMessagesSettingsType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Servizio\FormIOBuilderRenderType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Admin\Servizio\FormIOBuilderRenderType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Servizio\FormIOI18nType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Admin\Servizio\FormIOI18nType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Servizio\FormIOTemplateType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Admin\Servizio\FormIOTemplateType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Servizio\GeneralDataType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Admin\Servizio\GeneralDataType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Servizio\IOIntegrationDataType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Admin\Servizio\IOIntegrationDataType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Servizio\IntegrationsDataType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Admin\Servizio\IntegrationsDataType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Servizio\PaymentDataType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Admin\Servizio\PaymentDataType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Servizio\ProtocolDataType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Admin\Servizio\ProtocolDataType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\Servizio\TestType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Admin\Servizio\TestType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Admin\UserGroupType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Admin\UserGroupType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\AllegatoMeetingType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\AllegatoMeetingType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Api\CategoryApiType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Api\CategoryApiType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Api\ContactPointApiType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Api\ContactPointApiType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Api\GeographicAreaApiType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Api\GeographicAreaApiType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Api\PlaceApiType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Api\PlaceApiType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Api\PostalAddressApiType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Api\PostalAddressApiType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Api\RecipientApiType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Api\RecipientApiType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Api\UserGroupApiType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Api\UserGroupApiType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\ApplicationMessageType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\ApplicationMessageType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\ApplicationType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\ApplicationType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\AzioniOperatore\AllegatoPraticaType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\AzioniOperatore\AllegatoPraticaType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\AccettazioneIstruzioniType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Base\AccettazioneIstruzioniType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\AllegatiType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Base\AllegatiType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\AllegatoType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Base\AllegatoType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\BlockQuoteType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Base\BlockQuoteType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\CertificatoAnagraficoType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Base\CertificatoAnagraficoType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\ChooseAllegatoType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Base\ChooseAllegatoType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\ComponenteNucleoFamiliareType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Base\ComponenteNucleoFamiliareType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\DatiRichiedenteType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Base\DatiRichiedenteType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\DatiTecnicoType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Base\DatiTecnicoType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\DelegaType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Base\DelegaType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\MessageType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Base\MessageType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\NucleoFamiliareType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Base\NucleoFamiliareType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\PaymentGatewayType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Base\PaymentGatewayType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\RecaptchaType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Base\RecaptchaType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\SelectPaymentGatewayType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Base\SelectPaymentGatewayType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\SelezionaEnteType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Base\SelezionaEnteType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\SpecificaDelegaType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Base\SpecificaDelegaType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\SummaryType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Base\SummaryType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\UploadAllegatoType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Base\UploadAllegatoType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Base\UsoType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Base\UsoType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\CalendarBackofficeType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\CalendarBackofficeType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\CalendarType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\CalendarType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\CertificatoMatrimonio\DatiAttoType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\CertificatoMatrimonio\DatiAttoType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\CertificatoMorte\DatiAttoType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\CertificatoMorte\DatiAttoType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\ChangePasswordType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\ChangePasswordType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\DateTimeIntervalType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\DateTimeIntervalType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\DocumentAPIType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\DocumentAPIType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\EstrattoMatrimonio\DatiAttoType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\EstrattoMatrimonio\DatiAttoType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\EstrattoMorte\DatiAttoType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\EstrattoMorte\DatiAttoType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeExtensionInterface.0.App\Form\Extension\HelpDataTypeExtension"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Extension\HelpDataTypeExtension"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\ExternalCalendarType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\ExternalCalendarType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\FeedbackMessageType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\FeedbackMessageType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\FeedbackMessagesFormType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\FeedbackMessagesFormType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\FlowStepType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\FlowStepType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\FolderType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\FolderType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\FormIO\FormIORenderType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\FormIO\FormIORenderType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\GatewayType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\GatewayType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\I18n\I18nJsonType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\I18n\I18nJsonType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\I18n\I18nTextType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\I18n\I18nTextType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\I18n\I18nTextareaType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\I18n\I18nTextareaType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\IOServiceParametersType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\IOServiceParametersType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\IdCardType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\IdCardType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\IntegrationsType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\IntegrationsType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\IscrizioneRegistroAssociazioni\AllegatiType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\IscrizioneRegistroAssociazioni\AllegatiType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\IscrizioneRegistroAssociazioni\ContributoType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\IscrizioneRegistroAssociazioni\ContributoType"; reason: abstract.
  • Removed service ".instanceof.Craue\FormFlowBundle\Form\FormFlowInterface.0.App\Form\IscrizioneRegistroAssociazioni\IscrizioneRegistroAssociazioniFlow"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\IscrizioneRegistroAssociazioni\IscrizioneRegistroAssociazioniFlow"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\IscrizioneRegistroAssociazioni\OrgRichiedenteType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\IscrizioneRegistroAssociazioni\OrgRichiedenteType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\IscrizioneRegistroAssociazioni\TipologiaAttivitaType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\IscrizioneRegistroAssociazioni\TipologiaAttivitaType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\MeetingType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\MeetingType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\OccupazioneSuoloPubblico\AllegatiType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\OccupazioneSuoloPubblico\AllegatiType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\EventDispatcher\EventSubscriberInterface.0.App\Form\OccupazioneSuoloPubblico\ImportoChecker"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\OccupazioneSuoloPubblico\ImportoChecker"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\OccupazioneSuoloPubblico\ImportoType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\OccupazioneSuoloPubblico\ImportoType"; reason: abstract.
  • Removed service ".instanceof.Craue\FormFlowBundle\Form\FormFlowInterface.0.App\Form\OccupazioneSuoloPubblico\OccupazioneSuoloPubblicoFlow"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\OccupazioneSuoloPubblico\OccupazioneSuoloPubblicoFlow"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\OccupazioneSuoloPubblico\OccupazioneType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\OccupazioneSuoloPubblico\OccupazioneType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\OccupazioneSuoloPubblico\OrgRichiedenteType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\OccupazioneSuoloPubblico\OrgRichiedenteType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\OccupazioneSuoloPubblico\TempoOccupazioneType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\OccupazioneSuoloPubblico\TempoOccupazioneType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\OccupazioneSuoloPubblico\TipologiaOccupazioneType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\OccupazioneSuoloPubblico\TipologiaOccupazioneType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\OpeningHourType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\OpeningHourType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Operatore\Base\ApplicationOutcomeType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Operatore\Base\ApplicationOutcomeType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Operatore\Base\ApprovaORigettaType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Operatore\Base\ApprovaORigettaType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Operatore\Base\SignedAllegatoType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Operatore\Base\SignedAllegatoType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Operatore\Base\UploadAllegatoOperatoreType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Operatore\Base\UploadAllegatoOperatoreType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Operatore\Base\UploadRispostaOperatoreType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Operatore\Base\UploadRispostaOperatoreType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Operatore\CertificatoNascita\UploadCertificatoNascitaType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Operatore\CertificatoNascita\UploadCertificatoNascitaType"; reason: abstract.
  • Removed service ".instanceof.Craue\FormFlowBundle\Form\FormFlowInterface.0.App\Form\Operatore\Standard\StandardAllegatoNoFirmaFlow"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Operatore\Standard\StandardAllegatoNoFirmaFlow"; reason: abstract.
  • Removed service ".instanceof.Craue\FormFlowBundle\Form\FormFlowInterface.0.App\Form\Operatore\Standard\StandardOperatoreFlow"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Operatore\Standard\StandardOperatoreFlow"; reason: abstract.
  • Removed service ".instanceof.Craue\FormFlowBundle\Form\FormFlowInterface.0.App\Form\Operatore\Standard\StandardOperatoreWithSignatureFlow"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Operatore\Standard\StandardOperatoreWithSignatureFlow"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\OperatoreUserType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\OperatoreUserType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\PaymentOutcomeType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\PaymentOutcomeType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\PaymentParametersType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\PaymentParametersType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\ProfileUserType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\ProfileUserType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Rest\ApplicationBackofficeFormType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Rest\ApplicationBackofficeFormType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Rest\ApplicationFormType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Rest\ApplicationFormType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Rest\FileType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Rest\FileType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Rest\MessageFormType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Rest\MessageFormType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Rest\Transition\OutcomeFormType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Rest\Transition\OutcomeFormType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Rest\Transition\RequestIntegrationFormType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Rest\Transition\RequestIntegrationFormType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Scia\PraticaEdiliziaAllegatiModuloSciaType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Scia\PraticaEdiliziaAllegatiModuloSciaType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Scia\PraticaEdiliziaAllegatiTecniciType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Scia\PraticaEdiliziaAllegatiTecniciType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Scia\PraticaEdiliziaModuloSciaType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Scia\PraticaEdiliziaModuloSciaType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Scia\PraticaEdiliziaProvvedimentiType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Scia\PraticaEdiliziaProvvedimentiType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Scia\PraticaEdiliziaSoggettiType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Scia\PraticaEdiliziaSoggettiType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Scia\PraticaEdiliziaVincoliType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Scia\PraticaEdiliziaVincoliType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Security\NewPasswordType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Security\NewPasswordType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\Security\PasswordRequestType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\Security\PasswordRequestType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\ServizioFormType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\ServizioFormType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\SubscriberMessageType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\SubscriberMessageType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\SubscriberType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\SubscriberType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\SubscriptionPaymentType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\SubscriptionPaymentType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\SubscriptionServiceType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\SubscriptionServiceType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\SubscriptionType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\SubscriptionType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\TagsType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\TagsType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\TenantType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\TenantType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\Form\UserAPIFormType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Form\UserAPIFormType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Form\FormTypeInterface.0.App\FormIO\FormIOType"; reason: abstract.
  • Removed service ".abstract.instanceof.App\FormIO\FormIOType"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\EventDispatcher\EventSubscriberInterface.0.App\Payment\Gateway\Bollo"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Payment\Gateway\Bollo"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\EventDispatcher\EventSubscriberInterface.0.App\Payment\Gateway\GenericExternalPay"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Payment\Gateway\GenericExternalPay"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\EventDispatcher\EventSubscriberInterface.0.App\Payment\Gateway\MyPay"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Payment\Gateway\MyPay"; reason: abstract.
  • Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Repository\ContactPointRepository"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Repository\ContactPointRepository"; reason: abstract.
  • Removed service ".instanceof.Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepositoryInterface.0.App\Repository\PlaceRepository"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Repository\PlaceRepository"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Security\Core\Authorization\Voter\VoterInterface.0.App\Security\Voters\ApplicationVoter"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Security\Voters\ApplicationVoter"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Security\Core\Authorization\Voter\VoterInterface.0.App\Security\Voters\AttachmentVoter"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Security\Voters\AttachmentVoter"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Security\Core\Authorization\Voter\VoterInterface.0.App\Security\Voters\BackofficeVoter"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Security\Voters\BackofficeVoter"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Security\Core\Authorization\Voter\VoterInterface.0.App\Security\Voters\CalendarVoter"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Security\Voters\CalendarVoter"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Security\Core\Authorization\Voter\VoterInterface.0.App\Security\Voters\DocumentVoter"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Security\Voters\DocumentVoter"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Security\Core\Authorization\Voter\VoterInterface.0.App\Security\Voters\FolderVoter"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Security\Voters\FolderVoter"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Security\Core\Authorization\Voter\VoterInterface.0.App\Security\Voters\MeetingVoter"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Security\Voters\MeetingVoter"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Security\Core\Authorization\Voter\VoterInterface.0.App\Security\Voters\MessageVoter"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Security\Voters\MessageVoter"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Security\Core\Authorization\Voter\VoterInterface.0.App\Security\Voters\SubscriberVoter"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Security\Voters\SubscriberVoter"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Security\Core\Authorization\Voter\VoterInterface.0.App\Security\Voters\SubscriptionVoter"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Security\Voters\SubscriptionVoter"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Security\Core\Authorization\Voter\VoterInterface.0.App\Security\Voters\UserVoter"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Security\Voters\UserVoter"; reason: abstract.
  • Removed service ".instanceof.Artprima\PrometheusMetricsBundle\Metrics\MetricsCollectorInterface.0.App\Services\Metrics\ApplicationMetrics"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Services\Metrics\ApplicationMetrics"; reason: abstract.
  • Removed service ".instanceof.Artprima\PrometheusMetricsBundle\Metrics\MetricsCollectorInterface.0.App\Services\Metrics\ScheduledActionMetrics"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Services\Metrics\ScheduledActionMetrics"; reason: abstract.
  • Removed service ".instanceof.Artprima\PrometheusMetricsBundle\Metrics\MetricsCollectorInterface.0.App\Services\Metrics\UserMetrics"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Services\Metrics\UserMetrics"; reason: abstract.
  • Removed service ".instanceof.Twig\Extension\ExtensionInterface.0.App\Twig\AppExtension"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Twig\AppExtension"; reason: abstract.
  • Removed service ".instanceof.Twig\Extension\ExtensionInterface.0.App\Twig\HtmlSpecialCharsDecode"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Twig\HtmlSpecialCharsDecode"; reason: abstract.
  • Removed service ".instanceof.Twig\Extension\ExtensionInterface.0.App\Twig\IterCalculatorExtension"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Twig\IterCalculatorExtension"; reason: abstract.
  • Removed service ".instanceof.Twig\Extension\ExtensionInterface.0.App\Twig\JsonDecode"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Twig\JsonDecode"; reason: abstract.
  • Removed service ".instanceof.Twig\Extension\ExtensionInterface.0.App\Twig\TimeAgo"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Twig\TimeAgo"; reason: abstract.
  • Removed service ".instanceof.Twig\Extension\ExtensionInterface.0.App\Twig\Unserialize"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Twig\Unserialize"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Validator\ConstraintValidatorInterface.0.App\Validator\Constraints\ExpressionBasedFormIOConstraintValidator"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Validator\Constraints\ExpressionBasedFormIOConstraintValidator"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Validator\ConstraintValidatorInterface.0.App\Validator\Constraints\ServerSideFormIOConstraintValidator"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Validator\Constraints\ServerSideFormIOConstraintValidator"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Validator\ConstraintValidatorInterface.0.App\Validator\Constraints\ValidMimeTypeValidator"; reason: abstract.
  • Removed service ".abstract.instanceof.App\Validator\Constraints\ValidMimeTypeValidator"; reason: abstract.
  • Removed service ".instanceof.Monolog\Processor\ProcessorInterface.0.monolog_processor"; reason: abstract.
  • Removed service ".abstract.instanceof.monolog_processor"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Validator\ConstraintValidatorInterface.0.ocsdc.validator.scia.at_least_one_attachment"; reason: abstract.
  • Removed service ".abstract.instanceof.ocsdc.validator.scia.at_least_one_attachment"; reason: abstract.
  • Removed service ".instanceof.Symfony\Contracts\Service\ResetInterface.0.http.client"; reason: abstract.
  • Removed service ".instanceof.Psr\Log\LoggerAwareInterface.0.http.client"; reason: abstract.
  • Removed service ".abstract.instanceof.http.client"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Validator\ConstraintValidatorInterface.0.formio.constraint_validator"; reason: abstract.
  • Removed service ".abstract.instanceof.formio.constraint_validator"; reason: abstract.
  • Removed service ".instanceof.Symfony\Component\Validator\ConstraintValidatorInterface.0.formio.expression_based_validator"; reason: abstract.
  • Removed service ".abstract.instanceof.formio.expression_based_validator"; reason: abstract.
  • Removed service ".instanceof.Omines\DataTablesBundle\Adapter\AdapterInterface.0.Omines\DataTablesBundle\Adapter\ArrayAdapter"; reason: abstract.
  • Removed service ".abstract.instanceof.Omines\DataTablesBundle\Adapter\ArrayAdapter"; reason: abstract.
  • Removed service ".instanceof.Omines\DataTablesBundle\Adapter\AdapterInterface.0.Omines\DataTablesBundle\Adapter\Doctrine\ORMAdapter"; reason: abstract.
  • Removed service ".abstract.instanceof.Omines\DataTablesBundle\Adapter\Doctrine\ORMAdapter"; reason: abstract.
  • Removed service ".instanceof.Omines\DataTablesBundle\Adapter\AdapterInterface.0.Omines\DataTablesBundle\Adapter\Doctrine\FetchJoinORMAdapter"; reason: abstract.
  • Removed service ".abstract.instanceof.Omines\DataTablesBundle\Adapter\Doctrine\FetchJoinORMAdapter"; reason: abstract.
  • Removed service ".instanceof.Omines\DataTablesBundle\Column\AbstractColumn.0.Omines\DataTablesBundle\Column\TwigColumn"; reason: abstract.
  • Removed service ".abstract.instanceof.Omines\DataTablesBundle\Column\TwigColumn"; reason: abstract.
  • Removed service ".instanceof.Omines\DataTablesBundle\Column\AbstractColumn.0.Omines\DataTablesBundle\Column\TwigStringColumn"; reason: abstract.
  • Removed service ".abstract.instanceof.Omines\DataTablesBundle\Column\TwigStringColumn"; reason: abstract.
  • Removed service ".instanceof.Omines\DataTablesBundle\Exporter\DataTableExporterInterface.0.Omines\DataTablesBundle\Exporter\Excel\ExcelExporter"; reason: abstract.
  • Removed service ".abstract.instanceof.Omines\DataTablesBundle\Exporter\Excel\ExcelExporter"; reason: abstract.
  • Removed service ".instanceof.Omines\DataTablesBundle\Exporter\DataTableExporterInterface.0.Omines\DataTablesBundle\Exporter\Csv\CsvExporter"; reason: abstract.
  • Removed service ".abstract.instanceof.Omines\DataTablesBundle\Exporter\Csv\CsvExporter"; reason: abstract.
  • Removed service ".instanceof.Twig\Extension\ExtensionInterface.0.Omines\DataTablesBundle\Twig\DataTablesExtension"; reason: abstract.
  • Removed service ".abstract.instanceof.Omines\DataTablesBundle\Twig\DataTablesExtension"; reason: abstract.
669
Symfony\Component\DependencyInjection\Compiler\RemoveUnusedDefinitionsPass
  • Removed service "ReCaptcha\ReCaptcha"; reason: unused.
  • Removed service "ReCaptcha\RequestMethod\CurlPost"; reason: unused.
  • Removed service "ReCaptcha\RequestMethod\Curl"; reason: unused.
  • Removed service "App\DataFixtures\ORM\LoadData"; reason: unused.
  • Removed service "App\Doctrine\DBAL\Connection"; reason: unused.
  • Removed service "App\Doctrine\DBAL\Driver\PDOPgSql\Driver"; reason: unused.
  • Removed service "App\Doctrine\DBAL\Statement"; reason: unused.
  • Removed service "App\Doctrine\JSONText"; reason: unused.
  • Removed service "App\Doctrine\JsonFieldParser"; reason: unused.
  • Removed service "App\Doctrine\JsonbArrayElementsText"; reason: unused.
  • Removed service "App\Dto\ApplicationOutcome"; reason: unused.
  • Removed service "App\Dto\Meeting"; reason: unused.
  • Removed service "App\Dto\Message"; reason: unused.
  • Removed service "App\Dto\Tenant"; reason: unused.
  • Removed service "App\Dto\User"; reason: unused.
  • Removed service "App\Event\DispatchEmailFromMessageEvent"; reason: unused.
  • Removed service "App\Event\KafkaEvent"; reason: unused.
  • Removed service "App\Event\MessageEvent"; reason: unused.
  • Removed service "App\Event\PraticaOnChangeStatusEvent"; reason: unused.
  • Removed service "App\Event\ProtocollaAllegatiIntegrazioneSuccessEvent"; reason: unused.
  • Removed service "App\Event\ProtocollaAllegatiOperatoreSuccessEvent"; reason: unused.
  • Removed service "App\Event\ProtocollaAllegatoSuccessEvent"; reason: unused.
  • Removed service "App\Event\ProtocollaPraticaSuccessEvent"; reason: unused.
  • Removed service "App\Event\ProtocollaRichiesteIntegrazioneSuccessEvent"; reason: unused.
  • Removed service "App\EventListener\ResponseListener"; reason: unused.
  • Removed service "App\Exception\DelayedScheduledActionException"; reason: unused.
  • Removed service "App\Exception\MessageDisabledException"; reason: unused.
  • Removed service "App\Form\CertificatoMatrimonio\CertificatoMatrimonioFlow"; reason: unused.
  • Removed service "App\Form\CertificatoMorte\CertificatoMorteFlow"; reason: unused.
  • Removed service "App\Form\CertificatoNascita\CertificatoNascitaFlow"; reason: unused.
  • Removed service "App\Form\DataManager"; reason: unused.
  • Removed service "App\Form\EstrattoMatrimonio\EstrattoMatrimonioFlow"; reason: unused.
  • Removed service "App\Form\EstrattoMorte\EstrattoMorteFlow"; reason: unused.
  • Removed service "App\Form\EstrattoNascita\EstrattoNascitaFlow"; reason: unused.
  • Removed service "App\Form\FormIO\FormIOFlow"; reason: unused.
  • Removed service "App\Form\IscrizioneRegistroAssociazioni\IscrizioneRegistroAssociazioniFlow"; reason: unused.
  • Removed service "App\Form\OccupazioneSuoloPubblico\OccupazioneSuoloPubblicoFlow"; reason: unused.
  • Removed service "App\Form\Operatore\CertificatoNascita\CertificatoNascitaOperatoreFlow"; reason: unused.
  • Removed service "App\Form\Operatore\Standard\StandardAllegatoNoFirmaFlow"; reason: unused.
  • Removed service "App\Form\Operatore\Standard\StandardOperatoreFlow"; reason: unused.
  • Removed service "App\Form\Operatore\Standard\StandardOperatoreWithSignatureFlow"; reason: unused.
  • Removed service "App\Form\Scia\SciaPraticaEdiliziaFlow"; reason: unused.
  • Removed service "App\Form\UserSessionStorageKeyGenerator"; reason: unused.
  • Removed service "App\FormIO\DataBuilder"; reason: unused.
  • Removed service "App\FormIO\FormIOData"; reason: unused.
  • Removed service "App\FormIO\FormIOJsonFieldParser"; reason: unused.
  • Removed service "App\FormIO\Schema"; reason: unused.
  • Removed service "App\FormIO\SchemaComponent"; reason: unused.
  • Removed service "App\FormIO\SchemaFactory"; reason: unused.
  • Removed service "App\FormIO\Validator"; reason: unused.
  • Removed service "App\Handlers\Auth\AfterLoginRedirection"; reason: unused.
  • Removed service "App\Handlers\Servizio\DefaultAnonymousHandler"; reason: unused.
  • Removed service "App\Handlers\Servizio\DefaultHandler"; reason: unused.
  • Removed service "App\Handlers\Servizio\DefaultLoggedInHandler"; reason: unused.
  • Removed service "App\Handlers\Servizio\ForbiddenAccessException"; reason: unused.
  • Removed service "App\Handlers\Servizio\ImisHandler"; reason: unused.
  • Removed service "App\Helpers\EventTaxonomy"; reason: unused.
  • Removed service "App\Helpers\MunicipalityConverter"; reason: unused.
  • Removed service "App\Http\TransparentPixelResponse"; reason: unused.
  • Removed service "App\InstanceKernel"; reason: unused.
  • Removed service "App\InstanceKernelFactory"; reason: unused.
  • Removed service "App\Logging\ApplicantBrowserEventResolver"; reason: unused.
  • Removed service "App\Logging\LogConstants"; reason: unused.
  • Removed service "App\Mapper\Giscom\File"; reason: unused.
  • Removed service "App\Mapper\Giscom\FileCollection"; reason: unused.
  • Removed service "App\Mapper\Giscom\SciaPraticaEdilizia"; reason: unused.
  • Removed service "App\Mapper\Giscom\SciaPraticaEdilizia\ElencoAllegatiAllaDomanda"; reason: unused.
  • Removed service "App\Mapper\Giscom\SciaPraticaEdilizia\ElencoAllegatiTecnici"; reason: unused.
  • Removed service "App\Mapper\Giscom\SciaPraticaEdilizia\ElencoProvvedimenti"; reason: unused.
  • Removed service "App\Mapper\Giscom\SciaPraticaEdilizia\ElencoSoggettiAventiTitolo"; reason: unused.
  • Removed service "App\Mapper\Giscom\SciaPraticaEdilizia\Meta"; reason: unused.
  • Removed service "App\Mapper\Giscom\SciaPraticaEdilizia\ModuloCompilato"; reason: unused.
  • Removed service "App\Mapper\Giscom\SciaPraticaEdilizia\ModuloDomanda"; reason: unused.
  • Removed service "App\Mapper\Giscom\SciaPraticaEdilizia\Vincoli"; reason: unused.
  • Removed service "App\Model\AdditionalData"; reason: unused.
  • Removed service "App\Model\Application"; reason: unused.
  • Removed service "App\Model\CallToAction"; reason: unused.
  • Removed service "App\Model\DateTimeInterval"; reason: unused.
  • Removed service "App\Model\DefaultProtocolSettings"; reason: unused.
  • Removed service "App\Model\ExternalCalendar"; reason: unused.
  • Removed service "App\Model\FeedbackMessage"; reason: unused.
  • Removed service "App\Model\FeedbackMessages"; reason: unused.
  • Removed service "App\Model\FeedbackMessagesSettings"; reason: unused.
  • Removed service "App\Model\File"; reason: unused.
  • Removed service "App\Model\FlowStep"; reason: unused.
  • Removed service "App\Model\Gateway"; reason: unused.
  • Removed service "App\Model\IOServiceParameters"; reason: unused.
  • Removed service "App\Model\IdCard"; reason: unused.
  • Removed service "App\Model\LinksPagedList"; reason: unused.
  • Removed service "App\Model\Mailer"; reason: unused.
  • Removed service "App\Model\MetaPagedList"; reason: unused.
  • Removed service "App\Model\ParametersMetaPagedList"; reason: unused.
  • Removed service "App\Model\Payment"; reason: unused.
  • Removed service "App\Model\PaymentOutcome"; reason: unused.
  • Removed service "App\Model\PaymentParameters"; reason: unused.
  • Removed service "App\Model\PaymentSplit"; reason: unused.
  • Removed service "App\Model\PaymentTransaction"; reason: unused.
  • Removed service "App\Model\PostalAddress"; reason: unused.
  • Removed service "App\Model\PublicFile"; reason: unused.
  • Removed service "App\Model\Service"; reason: unused.
  • Removed service "App\Model\ServiceSource"; reason: unused.
  • Removed service "App\Model\SubscriberMessage"; reason: unused.
  • Removed service "App\Model\SubscriptionPayment"; reason: unused.
  • Removed service "App\Model\Transition"; reason: unused.
  • Removed service "App\PraticaEvents"; reason: unused.
  • Removed service "App\Protocollo\ConfigProtocolloHandler"; reason: unused.
  • Removed service "App\Protocollo\DummyProtocolloHandler"; reason: unused.
  • Removed service "App\Protocollo\Exception\AlreadySentException"; reason: unused.
  • Removed service "App\Protocollo\Exception\AlreadyUploadException"; reason: unused.
  • Removed service "App\Protocollo\Exception\BaseException"; reason: unused.
  • Removed service "App\Protocollo\Exception\IncompleteExecutionException"; reason: unused.
  • Removed service "App\Protocollo\Exception\InvalidStatusException"; reason: unused.
  • Removed service "App\Protocollo\Exception\ParentNotRegisteredException"; reason: unused.
  • Removed service "App\Protocollo\Exception\ResponseErrorException"; reason: unused.
  • Removed service "App\Protocollo\ExternalProtocolloHandler"; reason: unused.
  • Removed service "App\Protocollo\InforProtocolloHandler"; reason: unused.
  • Removed service "App\Protocollo\PecProtocolloHandler"; reason: unused.
  • Removed service "App\Protocollo\PiTreProtocolloHandler"; reason: unused.
  • Removed service "App\Protocollo\PiTreProtocolloParameters"; reason: unused.
  • Removed service "App\Protocollo\PiTreResponseData"; reason: unused.
  • Removed service "App\Protocollo\SipalProtocolloHandler"; reason: unused.
  • Removed service "App\ScheduledAction\Exception\AlreadyScheduledException"; reason: unused.
  • Removed service "App\Security\CPSAuthenticator"; reason: unused.
  • Removed service "App\Security\CasAuthenticator"; reason: unused.
  • Removed service "App\Security\DedaLoginAuthenticator"; reason: unused.
  • Removed service "App\Security\LogoutSuccessHandler"; reason: unused.
  • Removed service "App\Security\OpenLoginAuthenticator"; reason: unused.
  • Removed service "App\Security\PatAuthenticator"; reason: unused.
  • Removed service "App\Security\TokenAuthenticator"; reason: unused.
  • Removed service "App\Services\AbstractProtocolloService"; reason: unused.
  • Removed service "App\Services\DematerializedFormAllegatiAttacherService"; reason: unused.
  • Removed service "App\Services\Manager\BackofficeManager"; reason: unused.
  • Removed service "App\Utils\BrowserParser"; reason: unused.
  • Removed service "App\Utils\ConfigUtils"; reason: unused.
  • Removed service "App\Utils\Csv"; reason: unused.
  • Removed service "App\Utils\FormUtils"; reason: unused.
  • Removed service "App\Utils\StringUtils"; reason: unused.
  • Removed service "App\Utils\UploadedBase64File"; reason: unused.
  • Removed service "App\Validator\Constraints\AtLeastOneAttachmentConstraint"; reason: unused.
  • Removed service "App\Validator\Constraints\ExpressionBasedFormIOConstraint"; reason: unused.
  • Removed service "App\Validator\Constraints\ExpressionBasedFormIOConstraintValidator"; reason: unused.
  • Removed service "App\Validator\Constraints\ServerSideFormIOConstraint"; reason: unused.
  • Removed service "App\Validator\Constraints\ServerSideFormIOConstraintValidator"; reason: unused.
  • Removed service "App\Validator\Constraints\ValidMimeType"; reason: unused.
  • Removed service "ocsdc.cps.token_authenticator"; reason: unused.
  • Removed service "ocsdc.form.flow.storage_key_generator"; reason: unused.
  • Removed service "ocsdc.form.flow.pratica"; reason: unused.
  • Removed service "ocsdc.form.flow.praticaoperatore"; reason: unused.
  • Removed service "log_resolver.applicant_browser"; reason: unused.
  • Removed service "reverse_container"; reason: unused.
  • Removed service "cache.app.simple"; reason: unused.
  • Removed service "cache.app.taggable"; reason: unused.
  • Removed service "translator.selector"; reason: unused.
  • Removed service ".cache_connection.GD_MSZC"; reason: unused.
  • Removed service ".cache_connection.JKE6keX"; reason: unused.
  • Removed service ".1_NativeFileSessionHandler~2scG2E_"; reason: unused.
  • Removed service "session.storage.php_bridge"; reason: unused.
  • Removed service "session.attribute_bag"; reason: unused.
  • Removed service "session.storage.mock_file"; reason: unused.
  • Removed service "session.handler.native_file"; reason: unused.
  • Removed service "session.abstract_handler"; reason: unused.
  • Removed service "session.save_listener"; reason: unused.
  • Removed service "assets.empty_package"; reason: unused.
  • Removed service "assets.empty_version_strategy"; reason: unused.
  • Removed service "psr18.http_client"; reason: unused.
  • Removed service "Http\Client\HttpClient"; reason: unused.
  • Removed service "validator.mapping.cache.symfony"; reason: unused.
  • Removed service "validator.mapping.cache.adapter"; reason: unused.
  • Removed service "translator.logging"; reason: unused.
  • Removed service "routing.loader.service"; reason: unused.
  • Removed service ".2_ArrayAdapter~GqxH8lk"; reason: unused.
  • Removed service ".1_DoctrineProvider~GqxH8lk"; reason: unused.
  • Removed service "annotations.filesystem_cache_adapter"; reason: unused.
  • Removed service "annotations.filesystem_cache"; reason: unused.
  • Removed service "annotations.cache"; reason: unused.
  • Removed service "mime_types"; reason: unused.
  • Removed service "security.authentication.listener.anonymous"; reason: unused.
  • Removed service "security.authentication.provider.anonymous"; reason: unused.
  • Removed service "security.authentication.basic_entry_point"; reason: unused.
  • Removed service "security.context_listener"; reason: unused.
  • Removed service "security.rememberme.token.provider.in_memory"; reason: unused.
  • Removed service "anyx.login_gate.storage.session"; reason: unused.
  • Removed service "Artprima\PrometheusMetricsBundle\Metrics\AppMetrics"; reason: unused.
  • Removed service "craue.form.flow.data_manager_default"; reason: unused.
  • Removed service "craue.form.flow"; reason: unused.
  • Removed service "doctrine.dbal.logger.chain"; reason: unused.
  • Removed service "doctrine.dbal.well_known_schema_asset_filter"; reason: unused.
  • Removed service ".1_ServiceLocator~_9SUr1W"; reason: unused.
  • Removed service "doctrine.orm.listeners.resolve_target_entity"; reason: unused.
  • Removed service "doctrine.orm.naming_strategy.default"; reason: unused.
  • Removed service "doctrine.orm.naming_strategy.underscore"; reason: unused.
  • Removed service "doctrine.orm.quote_strategy.ansi"; reason: unused.
  • Removed service "doctrine.migrations.connection_loader"; reason: unused.
  • Removed service "doctrine.migrations.em_loader"; reason: unused.
  • Removed service "doctrine.migrations.connection_registry_loader"; reason: unused.
  • Removed service "ewz_recaptcha.extension.recaptcha.request_method.proxy_post"; reason: unused.
  • Removed service "ewz_recaptcha.form_builder_factory"; reason: unused.
  • Removed service "flagception.configurator.array_configurator"; reason: unused.
  • Removed service "flagception.configurator.constraint_configurator"; reason: unused.
  • Removed service "flagception.configurator.environment_configurator"; reason: unused.
  • Removed service "flagception.configurator.cookie_configurator"; reason: unused.
  • Removed service "flagception.configurator.database_configurator"; reason: unused.
  • Removed service "fos_rest.view_handler.jsonp"; reason: unused.
  • Removed service "fos_rest.serializer.symfony"; reason: unused.
  • Removed service "fos_rest.serializer.form_error_normalizer"; reason: unused.
  • Removed service "fos_rest.normalizer.camel_keys"; reason: unused.
  • Removed service "fos_rest.normalizer.camel_keys_with_leading_underscore"; reason: unused.
  • Removed service "fos_rest.decoder.jsontoform"; reason: unused.
  • Removed service "fos_rest.decoder.xml"; reason: unused.
  • Removed service "fos_rest.versioning.header_resolver"; reason: unused.
  • Removed service "fos_rest.versioning.media_type_resolver"; reason: unused.
  • Removed service "fos_rest.versioning.query_parameter_resolver"; reason: unused.
  • Removed service "jms_serializer.metadata.doctrine_phpcr_type_driver"; reason: unused.
  • Removed service "jms_serializer.metadata.doc_block_driver"; reason: unused.
  • Removed service "jms_serializer.identical_property_naming_strategy"; reason: unused.
  • Removed service "jms_serializer.doctrine_phpcr_object_constructor"; reason: unused.
  • Removed service "lexik_jwt_authentication.security.authentication.provider"; reason: unused.
  • Removed service "lexik_jwt_authentication.security.authentication.listener"; reason: unused.
  • Removed service "lexik_jwt_authentication.security.authentication.entry_point"; reason: unused.
  • Removed service "lexik_jwt_authentication.key_loader.openssl"; reason: unused.
  • Removed service "lexik_jwt_authentication.jws_provider.default"; reason: unused.
  • Removed service "lexik_jwt_authentication.encoder.default"; reason: unused.
  • Removed service "lexik_jwt_authentication.extractor.query_parameter_extractor"; reason: unused.
  • Removed service "lexik_jwt_authentication.extractor.cookie_extractor"; reason: unused.
  • Removed service "lexik_jwt_authentication.extractor.split_cookie_extractor"; reason: unused.
  • Removed service "lexik_jwt_authentication.security.jwt_user_provider"; reason: unused.
  • Removed service "oneup_flysystem.adapter_factory.local"; reason: unused.
  • Removed service "oneup_flysystem.adapter_factory.nulladapter"; reason: unused.
  • Removed service "oneup_flysystem.adapter_factory.zip"; reason: unused.
  • Removed service "oneup_flysystem.adapter_factory.async_aws_s3"; reason: unused.
  • Removed service "oneup_flysystem.adapter_factory.awss3v2"; reason: unused.
  • Removed service "oneup_flysystem.adapter_factory.awss3v3"; reason: unused.
  • Removed service "oneup_flysystem.adapter_factory.azureblob"; reason: unused.
  • Removed service "oneup_flysystem.adapter_factory.dropbox"; reason: unused.
  • Removed service "oneup_flysystem.adapter_factory.googlecloudstorage"; reason: unused.
  • Removed service "oneup_flysystem.adapter_factory.rackspace"; reason: unused.
  • Removed service "oneup_flysystem.adapter_factory.webdav"; reason: unused.
  • Removed service "oneup_flysystem.adapter_factory.ftp"; reason: unused.
  • Removed service "oneup_flysystem.adapter_factory.sftp"; reason: unused.
  • Removed service "oneup_flysystem.adapter_factory.gridfs"; reason: unused.
  • Removed service "oneup_flysystem.adapter_factory.customadapter"; reason: unused.
  • Removed service "oneup_flysystem.adapter_factory.memory"; reason: unused.
  • Removed service "oneup_flysystem.adapter_factory.fallback"; reason: unused.
  • Removed service "oneup_flysystem.adapter_factory.gaufrette"; reason: unused.
  • Removed service "oneup_flysystem.adapter_factory.replicate"; reason: unused.
  • Removed service "oneup_flysystem.cache_factory.adapter"; reason: unused.
  • Removed service "oneup_flysystem.cache_factory.memory"; reason: unused.
  • Removed service "oneup_flysystem.cache_factory.noop"; reason: unused.
  • Removed service "oneup_flysystem.cache_factory.memcached"; reason: unused.
  • Removed service "oneup_flysystem.cache_factory.php_redis"; reason: unused.
  • Removed service "oneup_flysystem.cache_factory.predis"; reason: unused.
  • Removed service "oneup_flysystem.cache_factory.stash"; reason: unused.
  • Removed service "oneup_flysystem.cache_factory.psr6"; reason: unused.
  • Removed service "oneup_flysystem.plugin.empty_dir"; reason: unused.
  • Removed service "oneup_flysystem.plugin.get_with_metadata"; reason: unused.
  • Removed service "oneup_flysystem.plugin.list_files"; reason: unused.
  • Removed service "oneup_flysystem.plugin.list_paths"; reason: unused.
  • Removed service "oneup_flysystem.plugin.list_with"; reason: unused.
  • Removed service "maker.maker.make_functional_test"; reason: unused.
  • Removed service "maker.maker.make_unit_test"; reason: unused.
  • Removed service "monolog.formatter.chrome_php"; reason: unused.
  • Removed service "monolog.formatter.gelf_message"; reason: unused.
  • Removed service "monolog.formatter.html"; reason: unused.
  • Removed service "monolog.formatter.line"; reason: unused.
  • Removed service "monolog.formatter.loggly"; reason: unused.
  • Removed service "monolog.formatter.normalizer"; reason: unused.
  • Removed service "monolog.formatter.scalar"; reason: unused.
  • Removed service "monolog.formatter.wildfire"; reason: unused.
  • Removed service "monolog.formatter.logstash"; reason: unused.
  • Removed service "monolog.http_client"; reason: unused.
  • Removed service ".4_Swift_Transport_Esmtp_Auth_NTLMAuthenticator~S9zFNJR"; reason: unused.
  • Removed service ".3_Swift_Transport_Esmtp_Auth_PlainAuthenticator~S9zFNJR"; reason: unused.
  • Removed service ".2_Swift_Transport_Esmtp_Auth_LoginAuthenticator~S9zFNJR"; reason: unused.
  • Removed service ".1_Swift_Transport_Esmtp_Auth_CramMd5Authenticator~S9zFNJR"; reason: unused.
  • Removed service "swiftmailer.transport.failover"; reason: unused.
  • Removed service "swiftmailer.transport.replacementfactory"; reason: unused.
  • Removed service "twig.loader.chain"; reason: unused.
  • Removed service "twig.extension.debug"; reason: unused.
  • Removed service "twig.extension.weblink"; reason: unused.
  • Removed service "webpack_encore.cache"; reason: unused.
  • Removed service "vich_uploader.adapter.mongodb"; reason: unused.
  • Removed service "vich_uploader.adapter.phpcr"; reason: unused.
  • Removed service "vich_uploader.listener.inject.orm"; reason: unused.
  • Removed service "vich_uploader.listener.upload.orm"; reason: unused.
  • Removed service "vich_uploader.listener.clean.orm"; reason: unused.
  • Removed service "vich_uploader.listener.remove.orm"; reason: unused.
  • Removed service "vich_uploader.listener.inject.mongodb"; reason: unused.
  • Removed service "vich_uploader.listener.upload.mongodb"; reason: unused.
  • Removed service "vich_uploader.listener.clean.mongodb"; reason: unused.
  • Removed service "vich_uploader.listener.remove.mongodb"; reason: unused.
  • Removed service "vich_uploader.listener.inject.phpcr"; reason: unused.
  • Removed service "vich_uploader.listener.upload.phpcr"; reason: unused.
  • Removed service "vich_uploader.listener.clean.phpcr"; reason: unused.
  • Removed service "vich_uploader.listener.remove.phpcr"; reason: unused.
  • Removed service "vich_uploader.storage.file_system"; reason: unused.
  • Removed service "monolog.logger.translation"; reason: unused.
  • Removed service "monolog.handler.null_internal"; reason: unused.
  • Removed service ".service_locator.wnlveDj"; reason: unused.
298
Symfony\Component\DependencyInjection\Compiler\InlineServiceDefinitionsPass
  • Inlined service ".service_locator.vdmMuyE.App\Controller\General\MetricsController" to "App\Controller\General\MetricsController".
  • Inlined service ".service_locator.vdmMuyE.App\Controller\General\SecurityController" to "App\Controller\General\SecurityController".
  • Inlined service ".service_locator.hyz4CBf.App\Controller\Rest\APIController" to "App\Controller\Rest\APIController".
  • Inlined service ".service_locator.hyz4CBf.App\Controller\Rest\ApplicationsAPIController" to "App\Controller\Rest\ApplicationsAPIController".
  • Inlined service ".service_locator.hyz4CBf.App\Controller\Rest\CalendarsAPIController" to "App\Controller\Rest\CalendarsAPIController".
  • Inlined service ".service_locator.hyz4CBf.App\Controller\Rest\CategoriesAPIController" to "App\Controller\Rest\CategoriesAPIController".
  • Inlined service ".service_locator.hyz4CBf.App\Controller\Rest\DocumentsAPIController" to "App\Controller\Rest\DocumentsAPIController".
  • Inlined service ".service_locator.hyz4CBf.App\Controller\Rest\FoldersAPIController" to "App\Controller\Rest\FoldersAPIController".
  • Inlined service ".service_locator.hyz4CBf.App\Controller\Rest\GeographicAreasAPIController" to "App\Controller\Rest\GeographicAreasAPIController".
  • Inlined service "App\Mapper\Giscom\GiscomStatusMapper" to "App\Controller\Rest\GiscomAPIController".
  • Inlined service "App\Services\PraticaIntegrationService" to "App\Controller\Rest\GiscomAPIController".
  • Inlined service "App\Services\GiscomAPIMapperService" to "App\Controller\Rest\GiscomAPIController".
  • Inlined service ".service_locator.vdmMuyE.App\Controller\Rest\GiscomAPIController" to "App\Controller\Rest\GiscomAPIController".
  • Inlined service ".service_locator.hyz4CBf.App\Controller\Rest\MeetingsAPIController" to "App\Controller\Rest\MeetingsAPIController".
  • Inlined service ".service_locator.hyz4CBf.App\Controller\Rest\MessagesAPIController" to "App\Controller\Rest\MessagesAPIController".
  • Inlined service ".service_locator.hyz4CBf.App\Controller\Rest\PaymentsAPIController" to "App\Controller\Rest\PaymentsAPIController".
  • Inlined service ".service_locator.hyz4CBf.App\Controller\Rest\PlacesAPIController" to "App\Controller\Rest\PlacesAPIController".
  • Inlined service ".service_locator.hyz4CBf.App\Controller\Rest\RecipientsAPIController" to "App\Controller\Rest\RecipientsAPIController".
  • Inlined service ".service_locator.hyz4CBf.App\Controller\Rest\ServicesAPIController" to "App\Controller\Rest\ServicesAPIController".
  • Inlined service "App\Dto\ServiceGroupDto" to "App\Controller\Rest\ServicesGroupAPIController".
  • Inlined service ".service_locator.hyz4CBf.App\Controller\Rest\ServicesGroupAPIController" to "App\Controller\Rest\ServicesGroupAPIController".
  • Inlined service ".service_locator.hyz4CBf.App\Controller\Rest\SessionAuthAPIController" to "App\Controller\Rest\SessionAuthAPIController".
  • Inlined service ".service_locator.hyz4CBf.App\Controller\Rest\StatusAPIController" to "App\Controller\Rest\StatusAPIController".
  • Inlined service ".service_locator.hyz4CBf.App\Controller\Rest\SubscribersAPIController" to "App\Controller\Rest\SubscribersAPIController".
  • Inlined service ".service_locator.hyz4CBf.App\Controller\Rest\SubscriptionServicesAPIController" to "App\Controller\Rest\SubscriptionServicesAPIController".
  • Inlined service ".service_locator.hyz4CBf.App\Controller\Rest\SubscriptionsAPIController" to "App\Controller\Rest\SubscriptionsAPIController".
  • Inlined service ".service_locator.hyz4CBf.App\Controller\Rest\TenantAPIController" to "App\Controller\Rest\TenantAPIController".
  • Inlined service ".service_locator.hyz4CBf.App\Controller\Rest\UserGroupsAPIController" to "App\Controller\Rest\UserGroupsAPIController".
  • Inlined service ".service_locator.hyz4CBf.App\Controller\Rest\UsersAPIController" to "App\Controller\Rest\UsersAPIController".
  • Inlined service ".service_locator.vdmMuyE.App\Controller\Ui\Backend\AdminController" to "App\Controller\Ui\Backend\AdminController".
  • Inlined service ".service_locator.vdmMuyE.App\Controller\Ui\Backend\CalendarsController" to "App\Controller\Ui\Backend\CalendarsController".
  • Inlined service ".service_locator.vdmMuyE.App\Controller\Ui\Backend\CategoryController" to "App\Controller\Ui\Backend\CategoryController".
  • Inlined service ".service_locator.vdmMuyE.App\Controller\Ui\Backend\GeographicAreaController" to "App\Controller\Ui\Backend\GeographicAreaController".
  • Inlined service ".service_locator.vdmMuyE.App\Controller\Ui\Backend\OperatoriController" to "App\Controller\Ui\Backend\OperatoriController".
  • Inlined service ".service_locator.vdmMuyE.App\Controller\Ui\Backend\PlaceController" to "App\Controller\Ui\Backend\PlaceController".
  • Inlined service ".service_locator.vdmMuyE.App\Controller\Ui\Backend\RecipientController" to "App\Controller\Ui\Backend\RecipientController".
  • Inlined service ".service_locator.vdmMuyE.App\Controller\Ui\Backend\SecurityController" to "App\Controller\Ui\Backend\SecurityController".
  • Inlined service ".service_locator.vdmMuyE.App\Controller\Ui\Backend\ServiceController" to "App\Controller\Ui\Backend\ServiceController".
  • Inlined service ".service_locator.vdmMuyE.App\Controller\Ui\Backend\ServiceGroupController" to "App\Controller\Ui\Backend\ServiceGroupController".
  • Inlined service ".service_locator.vdmMuyE.App\Controller\Ui\Backend\SubscriberController" to "App\Controller\Ui\Backend\SubscriberController".
  • Inlined service ".service_locator.vdmMuyE.App\Controller\Ui\Backend\UserGroupController" to "App\Controller\Ui\Backend\UserGroupController".
  • Inlined service ".service_locator.vdmMuyE.App\Controller\Ui\Backend\WebhookController" to "App\Controller\Ui\Backend\WebhookController".
  • Inlined service ".service_locator.vdmMuyE.App\Controller\Ui\Frontend\AllegatoController" to "App\Controller\Ui\Frontend\AllegatoController".
  • Inlined service ".service_locator.vdmMuyE.App\Controller\Ui\Frontend\DefaultController" to "App\Controller\Ui\Frontend\DefaultController".
  • Inlined service ".service_locator.vdmMuyE.App\Controller\Ui\Frontend\DocumentController" to "App\Controller\Ui\Frontend\DocumentController".
  • Inlined service ".service_locator.vdmMuyE.App\Controller\Ui\Frontend\PraticheController" to "App\Controller\Ui\Frontend\PraticheController".
  • Inlined service ".service_locator.vdmMuyE.App\Controller\Ui\Frontend\PrintController" to "App\Controller\Ui\Frontend\PrintController".
  • Inlined service ".service_locator.vdmMuyE.App\Controller\Ui\Frontend\SearchController" to "App\Controller\Ui\Frontend\SearchController".
  • Inlined service ".service_locator.vdmMuyE.App\Controller\Ui\Frontend\ServiziController" to "App\Controller\Ui\Frontend\ServiziController".
  • Inlined service ".service_locator.vdmMuyE.App\Controller\Ui\Frontend\SubscriptionServicesController" to "App\Controller\Ui\Frontend\SubscriptionServicesController".
  • Inlined service ".service_locator.vdmMuyE.App\Controller\Ui\Frontend\SubscriptionsController" to "App\Controller\Ui\Frontend\SubscriptionsController".
  • Inlined service ".service_locator.vdmMuyE.App\Controller\Ui\Frontend\TrackingController" to "App\Controller\Ui\Frontend\TrackingController".
  • Inlined service ".service_locator.vdmMuyE.App\Controller\Ui\Frontend\UserController" to "App\Controller\Ui\Frontend\UserController".
  • Inlined service "App\Services\ReminderService" to "App\EventListener\PaymentReminderListener".
  • Inlined service "App\Services\DelayedProtocolloService" to "App\EventListener\ProtocollaPraticaListener".
  • Inlined service "App\Services\TermsAcceptanceCheckerService" to "App\EventListener\TermsAcceptListener".
  • Inlined service "App\Form\Extension\TestiAccompagnatoriProcedura" to "App\Form\Extension\HelpDataTypeExtension".
  • Inlined service "ocsdc.giscom_api.mapper" to "App\Services\GiscomAPIAdapterService".
  • Inlined service "ocsdc.status_mapper.giscom" to "App\Services\GiscomAPIAdapterService".
  • Inlined service "session.flash_bag" to "App\Services\Manager\MessageManager".
  • Inlined service "App\Services\FileSystemService" to "App\Services\ModuloPdfBuilderService".
  • Inlined service "formio.validator" to "formio.constraint_validator".
  • Inlined service "formio.expression_validator" to "formio.expression_based_validator".
  • Inlined service "twig.error_renderer.html" to "error_controller".
  • Inlined service "debug.controller_resolver" to "http_kernel".
  • Inlined service "debug.argument_resolver" to "http_kernel".
  • Inlined service ".service_locator.0nodIsM" to "fragment.handler".
  • Inlined service "uri_signer" to "fragment.renderer.esi".
  • Inlined service ".1_~LUWuM41" to "error_handler.error_renderer.html".
  • Inlined service ".2_~LUWuM41" to "error_handler.error_renderer.html".
  • Inlined service "monolog.logger.console" to "console.error_listener".
  • Inlined service "translation.writer" to "console.command.translation_update".
  • Inlined service "cache.app.recorder_inner" to "cache.app".
  • Inlined service "cache.system.recorder_inner" to "cache.system".
  • Inlined service "cache.validator.recorder_inner" to "cache.validator".
  • Inlined service "cache.serializer.recorder_inner" to "cache.serializer".
  • Inlined service "cache.annotations.recorder_inner" to "cache.annotations".
  • Inlined service "cache.property_info.recorder_inner" to "cache.property_info".
  • Inlined service "session.storage.metadata_bag" to "session.storage.native".
  • Inlined service ".service_locator.Bppmeg3" to "session_listener".
  • Inlined service ".1_ResolvedFormTypeFactory~fd84pI6" to "form.resolved_type_factory".
  • Inlined service "form.extension" to "form.registry".
  • Inlined service "form.resolved_type_factory" to "form.registry".
  • Inlined service ".service_locator.eet9hDb" to "form.extension".
  • Inlined service "form.choice_list_factory.default" to "form.choice_list_factory.property_access".
  • Inlined service "form.choice_list_factory.property_access" to "form.choice_list_factory.cached".
  • Inlined service "form.type_extension.form.request_handler" to "form.type_extension.form.http_foundation".
  • Inlined service "assets._default_package" to "assets.packages".
  • Inlined service "assets._version__default" to "assets._default_package".
  • Inlined service "assets.context" to "assets._default_package".
  • Inlined service "validator.validator_factory" to "validator.builder".
  • Inlined service "doctrine.orm.validator_initializer" to "validator.builder".
  • Inlined service "validator.property_info_loader" to "validator.builder".
  • Inlined service "doctrine.orm.default_entity_manager.validator_loader" to "validator.builder".
  • Inlined service ".service_locator.QmW6E2E" to "validator.validator_factory".
  • Inlined service ".service_locator.V.o0zE7" to "translator.default".
  • Inlined service "translator.formatter.default" to "translator.default".
  • Inlined service "identity_translator" to "translator.formatter.default".
  • Inlined service "translation.extractor.php" to "translation.extractor".
  • Inlined service "twig.translation.extractor" to "translation.extractor".
  • Inlined service "translation.dumper.php" to "translation.writer".
  • Inlined service "translation.dumper.xliff" to "translation.writer".
  • Inlined service "translation.dumper.po" to "translation.writer".
  • Inlined service "translation.dumper.mo" to "translation.writer".
  • Inlined service "translation.dumper.yml" to "translation.writer".
  • Inlined service "translation.dumper.yaml" to "translation.writer".
  • Inlined service "translation.dumper.qt" to "translation.writer".
  • Inlined service "translation.dumper.csv" to "translation.writer".
  • Inlined service "translation.dumper.ini" to "translation.writer".
  • Inlined service "translation.dumper.json" to "translation.writer".
  • Inlined service "translation.dumper.res" to "translation.writer".
  • Inlined service ".service_locator.XSes1R5.translation.warmer" to "translation.warmer".
  • Inlined service "profiler.storage" to "profiler".
  • Inlined service "data_collector.time" to "profiler".
  • Inlined service "data_collector.memory" to "profiler".
  • Inlined service "data_collector.validator" to "profiler".
  • Inlined service "data_collector.ajax" to "profiler".
  • Inlined service "data_collector.exception" to "profiler".
  • Inlined service "data_collector.logger" to "profiler".
  • Inlined service "data_collector.events" to "profiler".
  • Inlined service "data_collector.cache" to "profiler".
  • Inlined service "data_collector.translation" to "profiler".
  • Inlined service "data_collector.security" to "profiler".
  • Inlined service "data_collector.twig" to "profiler".
  • Inlined service "data_collector.http_client" to "profiler".
  • Inlined service "data_collector.doctrine" to "profiler".
  • Inlined service "doctrine_migrations.migrations_collector" to "profiler".
  • Inlined service "swiftmailer.data_collector" to "profiler".
  • Inlined service "flagception.profiler.feature_data_collector" to "profiler".
  • Inlined service "data_collector.jms_serializer" to "profiler".
  • Inlined service "Vich\UploaderBundle\DataCollector\MappingCollector" to "profiler".
  • Inlined service "data_collector.config" to "profiler".
  • Inlined service "data_collector.form.extractor" to "data_collector.form".
  • Inlined service "monolog.logger.php" to "debug.debug_handlers_listener".
  • Inlined service "debug.controller_resolver.inner" to "debug.controller_resolver".
  • Inlined service "debug.argument_resolver.inner" to "debug.argument_resolver".
  • Inlined service ".service_locator.XwZNkPh" to ".1_LegacyRouteLoaderContainer~EWMhQ3D".
  • Inlined service "routing.loader.xml" to "routing.resolver".
  • Inlined service "routing.loader.yml" to "routing.resolver".
  • Inlined service "routing.loader.php" to "routing.resolver".
  • Inlined service "routing.loader.glob" to "routing.resolver".
  • Inlined service "routing.loader.directory" to "routing.resolver".
  • Inlined service "routing.loader.container" to "routing.resolver".
  • Inlined service "routing.loader.annotation.directory" to "routing.resolver".
  • Inlined service "routing.loader.annotation.file" to "routing.resolver".
  • Inlined service ".1_LegacyRouteLoaderContainer~EWMhQ3D" to "routing.loader.container".
  • Inlined service "routing.resolver" to "routing.loader".
  • Inlined service ".service_locator.m90YCjy.router.cache_warmer" to "router.cache_warmer".
  • Inlined service "annotations.dummy_registry" to "annotations.reader".
  • Inlined service "cache.property_access" to "property_accessor".
  • Inlined service ".service_locator.XjnY8xG" to "security.token_storage".
  • Inlined service ".service_locator.6zQlgQt" to "security.helper".
  • Inlined service "security.expression_language" to "security.access.expression_voter".
  • Inlined service ".service_locator.WkV.uWk" to "security.firewall.map".
  • Inlined service "cache.security_expression_language.recorder_inner" to "cache.security_expression_language".
  • Inlined service "security.authentication.retry_entry_point" to "security.channel_listener".
  • Inlined service ".security.request_matcher.dsWNmq0" to "security.access_map".
  • Inlined service ".security.request_matcher.09dQSBp" to "security.access_map".
  • Inlined service ".security.request_matcher..h1arDC" to "security.access_map".
  • Inlined service ".security.request_matcher.H2kAAC4" to "security.access_map".
  • Inlined service ".security.request_matcher.CFLqjdd" to "security.access_map".
  • Inlined service ".security.request_matcher.VtFYa16" to "security.access_map".
  • Inlined service ".security.request_matcher.W8UUixf" to "security.access_map".
  • Inlined service ".security.request_matcher.bT5uJZa" to "security.access_map".
  • Inlined service ".security.request_matcher.DnE3cp0" to "security.access_map".
  • Inlined service ".security.request_matcher.CgvI3M1" to "security.access_map".
  • Inlined service ".security.request_matcher.CdrD6ba" to "security.access_map".
  • Inlined service ".security.request_matcher.f91tQ74" to "security.access_map".
  • Inlined service ".security.request_matcher.5hqzwHb" to "security.access_map".
  • Inlined service ".security.request_matcher.g0.xewE" to "security.access_map".
  • Inlined service ".security.request_matcher.AvTtM3m" to "security.access_map".
  • Inlined service ".security.request_matcher.eJS97g0" to "security.access_map".
  • Inlined service ".security.request_matcher.AC4QD7n" to "security.access_map".
  • Inlined service ".security.request_matcher.KMa5NGR" to "security.access_map".
  • Inlined service ".security.request_matcher.wObU2DA" to "security.access_map".
  • Inlined service ".security.request_matcher.27H6bzl" to "security.access_map".
  • Inlined service ".security.request_matcher.AzXiVIy" to "security.access_map".
  • Inlined service "debug.security.access.decision_manager.inner" to "debug.security.access.decision_manager".
  • Inlined service "security.firewall.map.config.dev" to "security.firewall.map.context.dev".
  • Inlined service "lexik_jwt_authentication.handler.authentication_success" to "security.authentication.success_handler.api_login.json_login".
  • Inlined service "lexik_jwt_authentication.handler.authentication_failure" to "security.authentication.failure_handler.api_login.json_login".
  • Inlined service "security.authentication.success_handler.api_login.json_login" to "security.authentication.listener.json.api_login".
  • Inlined service "security.authentication.failure_handler.api_login.json_login" to "security.authentication.listener.json.api_login".
  • Inlined service "security.authentication.session_strategy_noop" to "security.authentication.listener.json.api_login".
  • Inlined service "security.exception_listener.api_login" to "security.firewall.map.context.api_login".
  • Inlined service "security.firewall.map.config.api_login" to "security.firewall.map.context.api_login".
  • Inlined service "security.exception_listener.api_secure" to "security.firewall.map.context.api_secure".
  • Inlined service "security.firewall.map.config.api_secure" to "security.firewall.map.context.api_secure".
  • Inlined service "security.exception_listener.api" to "security.firewall.map.context.api".
  • Inlined service "security.firewall.map.config.api" to "security.firewall.map.context.api".
  • Inlined service "security.logout.success_handler.backend" to "security.logout_listener.backend".
  • Inlined service "security.logout.handler.cookie_clearing.backend" to "security.logout_listener.backend".
  • Inlined service "ocsdc.redirect.after.login" to "security.authentication.success_handler.backend.form_login".
  • Inlined service "security.authentication.success_handler.backend.form_login" to "security.authentication.listener.form.backend".
  • Inlined service "security.authentication.failure_handler.backend.form_login" to "security.authentication.listener.form.backend".
  • Inlined service "security.authentication.form_entry_point.backend" to "security.exception_listener.backend".
  • Inlined service "security.exception_listener.backend" to "security.firewall.map.context.backend".
  • Inlined service "security.logout_listener.backend" to "security.firewall.map.context.backend".
  • Inlined service "security.firewall.map.config.backend" to "security.firewall.map.context.backend".
  • Inlined service "security.exception_listener.giscom_api" to "security.firewall.map.context.giscom_api".
  • Inlined service "security.firewall.map.config.giscom_api" to "security.firewall.map.context.giscom_api".
  • Inlined service "security.exception_listener.ez_api" to "security.firewall.map.context.ez_api".
  • Inlined service "security.firewall.map.config.ez_api" to "security.firewall.map.context.ez_api".
  • Inlined service "security.exception_listener.print" to "security.firewall.map.context.print".
  • Inlined service "security.firewall.map.config.print" to "security.firewall.map.context.print".
  • Inlined service "ocsdc.logout_success_handler" to "security.logout_listener.open_login".
  • Inlined service "security.logout.handler.cookie_clearing.open_login" to "security.logout_listener.open_login".
  • Inlined service "security.exception_listener.open_login" to "security.firewall.map.context.open_login".
  • Inlined service "security.logout_listener.open_login" to "security.firewall.map.context.open_login".
  • Inlined service "security.firewall.map.config.open_login" to "security.firewall.map.context.open_login".
  • Inlined service "security.exception_listener.main" to "security.firewall.map.context.main".
  • Inlined service "security.firewall.map.config.main" to "security.firewall.map.context.main".
  • Inlined service "anyx.login_gate.storage.orm" to "anyx.login_gate.attempt_storage".
  • Inlined service "anyx.login_gate.username_resolver.default" to "anyx.login_gate.brute_force_checker".
  • Inlined service "prometheus_metrics_bundle.adapter" to "prometheus_metrics_bundle.collector_registry".
  • Inlined service "Artprima\PrometheusMetricsBundle\Metrics\MetricsCollectorRegistry" to "Artprima\PrometheusMetricsBundle\EventListener\MetricsCollectorListener".
  • Inlined service "App\Services\Metrics\ApplicationMetrics" to "Artprima\PrometheusMetricsBundle\Metrics\MetricsCollectorRegistry".
  • Inlined service "monolog.logger.doctrine" to "doctrine.dbal.logger".
  • Inlined service "doctrine.dbal.logger.chain.default" to "doctrine.dbal.default_connection.configuration".
  • Inlined service "doctrine.dbal.logger" to "doctrine.dbal.logger.chain.default".
  • Inlined service ".service_locator._5x7ANS" to "doctrine.dbal.default_connection.event_manager".
  • Inlined service "doctrine.dbal.default_connection.configuration" to "doctrine.dbal.default_connection".
  • Inlined service "doctrine.dbal.default_connection.event_manager" to "doctrine.dbal.default_connection".
  • Inlined service "doctrine.dbal.connection_factory" to "doctrine.dbal.default_connection".
  • Inlined service ".service_locator.6OJ2cqv" to "doctrine.orm.container_repository_factory".
  • Inlined service "cache.doctrine.orm.default.metadata" to "doctrine.orm.default_configuration".
  • Inlined service "doctrine.orm.default_metadata_driver" to "doctrine.orm.default_configuration".
  • Inlined service "doctrine.orm.naming_strategy.underscore_number_aware" to "doctrine.orm.default_configuration".
  • Inlined service "doctrine.orm.quote_strategy.default" to "doctrine.orm.default_configuration".
  • Inlined service "doctrine.orm.default_entity_listener_resolver" to "doctrine.orm.default_configuration".
  • Inlined service "doctrine.orm.container_repository_factory" to "doctrine.orm.default_configuration".
  • Inlined service "cache.doctrine.orm.default.result.recorder_inner" to "cache.doctrine.orm.default.result".
  • Inlined service "cache.doctrine.orm.default.query.recorder_inner" to "cache.doctrine.orm.default.query".
  • Inlined service "doctrine.orm.default_configuration" to "doctrine.orm.default_entity_manager".
  • Inlined service "doctrine.orm.default_manager_configurator" to "doctrine.orm.default_entity_manager".
  • Inlined service "doctrine.fixtures.loader" to "doctrine.fixtures_load_command".
  • Inlined service "doctrine.fixtures.purger.orm_purger_factory" to "doctrine.fixtures_load_command".
  • Inlined service "App\DataFixtures\AppFixtures" to "doctrine.fixtures.loader".
  • Inlined service "doctrine.migrations.configuration_loader" to "doctrine.migrations.dependency_factory".
  • Inlined service "doctrine.migrations.entity_manager_registry_loader" to "doctrine.migrations.dependency_factory".
  • Inlined service "doctrine.migrations.configuration" to "doctrine.migrations.configuration_loader".
  • Inlined service "doctrine.migrations.storage.table_storage" to "doctrine.migrations.configuration".
  • Inlined service "doctrine.migrations.container_aware_migrations_factory.inner" to "doctrine.migrations.container_aware_migrations_factory".
  • Inlined service "doctrine_migrations.migrations_flattener" to "doctrine_migrations.migrations_collector".
  • Inlined service "monolog.logger.eight_points_guzzle" to "eight_points_guzzle.middleware.symfony_log".
  • Inlined service "ewz_recaptcha.locale.resolver" to "ewz_recaptcha.form.type".
  • Inlined service "ewz_recaptcha.extension.recaptcha.request_method.post" to "ewz_recaptcha.recaptcha".
  • Inlined service "exercise_html_purifier.config.default" to "exercise_html_purifier.default".
  • Inlined service ".service_locator.HZJnjFQ" to "exercise_html_purifier.purifiers_registry".
  • Inlined service "flagception.factory.expression_language_factory" to "flagception.expression_language".
  • Inlined service "flagception.expression_language" to "flagception.constraint.constraint_resolver".
  • Inlined service "flagception.constraint_provider.date_provider" to "flagception.factory.expression_language_factory".
  • Inlined service "flagception.constraint_provider.match_provider" to "flagception.factory.expression_language_factory".
  • Inlined service "flagception.activator.array_activator" to "flagception.activator.chain_activator".
  • Inlined service "flagception.activator.environment_activator" to "flagception.activator.chain_activator".
  • Inlined service "flagception.activator.constraint_activator" to "flagception.activator.chain_activator".
  • Inlined service "flagception.constraint.constraint_resolver" to "flagception.activator.constraint_activator".
  • Inlined service "fos_rest.request.param_fetcher.reader" to "fos_rest.request.param_fetcher".
  • Inlined service ".service_locator.Ey0pI2t" to "fos_rest.decoder_provider".
  • Inlined service "fos_rest.decoder_provider" to "fos_rest.body_listener".
  • Inlined service "fos_rest.format_negotiator" to "fos_rest.format_listener".
  • Inlined service "fos_rest.request_matcher.6d27357678da78ac461e8b851ac5bf83a1f9471f9d410dff7d760712cb7770b80848bf9c" to "fos_rest.format_negotiator".
  • Inlined service "fos_rest.request_matcher.3cfa7a61c60c208198d4e083d6b4fd3255a4b139f2613b3fbad554f23d14eda296bdaee4" to "fos_rest.format_negotiator".
  • Inlined service "fos_rest.request_matcher.00ae7ed07a7da71185d0d1be18d9f92bd46949e51f93105db1aeb052f23951b4a727315d" to "fos_rest.format_negotiator".
  • Inlined service "fos_rest.versioning.chain_resolver" to "fos_rest.versioning.listener".
  • Inlined service "fos_rest.request.param_fetcher" to "fos_rest.param_fetcher_listener".
  • Inlined service "jms_serializer.metadata.yaml_driver" to "jms_serializer.metadata.chain_driver".
  • Inlined service "jms_serializer.metadata.xml_driver" to "jms_serializer.metadata.chain_driver".
  • Inlined service "jms_serializer.metadata.annotation_driver" to "jms_serializer.metadata.chain_driver".
  • Inlined service "jms_serializer.metadata.chain_driver" to "jms_serializer.metadata.doctrine_type_driver".
  • Inlined service "jms_serializer.metadata.service_locator" to "jms_serializer.metadata.lazy_loading_driver".
  • Inlined service "jms_serializer.metadata.lazy_loading_driver" to "jms_serializer.metadata_factory".
  • Inlined service "jms_serializer.camel_case_naming_strategy" to "jms_serializer.serialized_name_annotation_strategy".
  • Inlined service "jms_serializer.unserialize_object_constructor" to "jms_serializer.doctrine_object_constructor".
  • Inlined service "jms_serializer.doctrine_object_constructor" to "jms_serializer.deserialization_graph_navigator_factory".
  • Inlined service "jms_serializer.expression_language" to "jms_serializer.expression_evaluator".
  • Inlined service "jms_serializer.expression_language.function_provider" to "jms_serializer.expression_language".
  • Inlined service "jms_serializer.event_dispatcher.service_locator" to "jms_serializer.traceable_event_dispatcher".
  • Inlined service "jms_serializer.metadata.cache.file_cache" to "jms_serializer.metadata.traceable_cache".
  • Inlined service "jms_serializer.traceable_handler_registry.inner" to "jms_serializer.traceable_handler_registry".
  • Inlined service "lexik_jwt_authentication.extractor.authorization_header_extractor" to "lexik_jwt_authentication.extractor.chain_extractor".
  • Inlined service "lexik_jwt_authentication.extractor.chain_extractor" to "lexik_jwt_authentication.security.guard.jwt_token_authenticator".
  • Inlined service ".1_TokenStorage~A.NTllk" to "lexik_jwt_authentication.security.guard.jwt_token_authenticator".
  • Inlined service "nelmio_api_doc.generator_locator" to "nelmio_api_doc.render_docs".
  • Inlined service "nelmio_api_doc.render_docs.json" to "nelmio_api_doc.render_docs".
  • Inlined service "nelmio_api_doc.render_docs.yaml" to "nelmio_api_doc.render_docs".
  • Inlined service "nelmio_api_doc.render_docs.html" to "nelmio_api_doc.render_docs".
  • Inlined service "Omines\DataTablesBundle\Exporter\DataTableExporterCollection" to "Omines\DataTablesBundle\Exporter\DataTableExporterManager".
  • Inlined service "Omines\DataTablesBundle\Twig\TwigRenderer" to "Omines\DataTablesBundle\DataTableFactory".
  • Inlined service "Omines\DataTablesBundle\DependencyInjection\Instantiator" to "Omines\DataTablesBundle\DataTableFactory".
  • Inlined service "Omines\DataTablesBundle\Exporter\DataTableExporterManager" to "Omines\DataTablesBundle\DataTableFactory".
  • Inlined service "datatables.adapter_locator" to "Omines\DataTablesBundle\DependencyInjection\Instantiator".
  • Inlined service "datatables.column_locator" to "Omines\DataTablesBundle\DependencyInjection\Instantiator".
  • Inlined service "datatables.type_locator" to "Omines\DataTablesBundle\DependencyInjection\Instantiator".
  • Inlined service "datatables.exporter_locator" to "Omines\DataTablesBundle\DependencyInjection\Instantiator".
  • Inlined service "sensio_framework_extra.converter.manager" to "sensio_framework_extra.converter.listener".
  • Inlined service "sensio_framework_extra.converter.doctrine.orm" to "sensio_framework_extra.converter.manager".
  • Inlined service "framework_extra_bundle.date_time_param_converter" to "sensio_framework_extra.converter.manager".
  • Inlined service "sensio_framework_extra.converter.doctrine.orm.expression_language.default" to "sensio_framework_extra.converter.doctrine.orm".
  • Inlined service "sensio_framework_extra.view.guesser" to "sensio_framework_extra.view.listener".
  • Inlined service ".service_locator.C2Thyvr.sensio_framework_extra.view.listener" to "sensio_framework_extra.view.listener".
  • Inlined service "sensio_framework_extra.security.expression_language.default" to "sensio_framework_extra.security.listener".
  • Inlined service "var_dumper.contextualized_cli_dumper" to "debug.dump_listener".
  • Inlined service ".1_SourceContextProvider~R67sWAm" to "var_dumper.contextualized_cli_dumper".
  • Inlined service ".2_SourceContextProvider~R67sWAm" to "var_dumper.server_connection".
  • Inlined service ".3_RequestContextProvider~R67sWAm" to "var_dumper.server_connection".
  • Inlined service ".4_CliContextProvider~R67sWAm" to "var_dumper.server_connection".
  • Inlined service "monolog.logger.debug" to "var_dumper.dump_server".
  • Inlined service "var_dumper.dump_server" to "var_dumper.command.server_dump".
  • Inlined service ".5_CliDescriptor~R67sWAm" to "var_dumper.command.server_dump".
  • Inlined service ".6_HtmlDescriptor~R67sWAm" to "var_dumper.command.server_dump".
  • Inlined service "maker.autoloader_util" to "maker.file_manager".
  • Inlined service "maker.file_link_formatter" to "maker.file_manager".
  • Inlined service "maker.autoloader_finder" to "maker.autoloader_util".
  • Inlined service "maker.template_component_generator" to "maker.generator".
  • Inlined service "maker.security_controller_builder" to "maker.maker.make_authenticator".
  • Inlined service "maker.event_registry" to "maker.maker.make_subscriber".
  • Inlined service "maker.user_class_builder" to "maker.maker.make_user".
  • Inlined service "monolog.handler.stdout" to "monolog.handler.all_logs".
  • Inlined service "monolog.handler.all_logs.http_code_strategy" to "monolog.handler.all_logs".
  • Inlined service "monolog.handler.sdterr" to "monolog.handler.filter_errors".
  • Inlined service "monolog.handler.filter_errors.http_code_strategy" to "monolog.handler.filter_errors".
  • Inlined service "twig.loader.native_filesystem" to "twig".
  • Inlined service "twig.extension.security_csrf" to "twig".
  • Inlined service "twig.extension.logout_url" to "twig".
  • Inlined service "twig.extension.security" to "twig".
  • Inlined service "twig.extension.dump" to "twig".
  • Inlined service "twig.extension.profiler" to "twig".
  • Inlined service "twig.extension.trans" to "twig".
  • Inlined service "twig.extension.code" to "twig".
  • Inlined service "twig.extension.routing" to "twig".
  • Inlined service "twig.extension.yaml" to "twig".
  • Inlined service "twig.extension.debug.stopwatch" to "twig".
  • Inlined service "twig.extension.expression" to "twig".
  • Inlined service "twig.extension.httpkernel" to "twig".
  • Inlined service "twig.extension.httpfoundation" to "twig".
  • Inlined service "twig.extension.form" to "twig".
  • Inlined service "App\Twig\AppExtension" to "twig".
  • Inlined service "App\Twig\HtmlSpecialCharsDecode" to "twig".
  • Inlined service "App\Twig\IterCalculatorExtension" to "twig".
  • Inlined service "App\Twig\JsonDecode" to "twig".
  • Inlined service "App\Twig\TimeAgo" to "twig".
  • Inlined service "App\Twig\Unserialize" to "twig".
  • Inlined service "twig.extension.craue_formflow" to "twig".
  • Inlined service "doctrine.twig.doctrine_extension" to "twig".
  • Inlined service "eight_points_guzzle.twig_extension.debug" to "twig".
  • Inlined service "exercise_html_purifier.twig.extension" to "twig".
  • Inlined service "flagception.twig.toggle_extension" to "twig".
  • Inlined service "jms_serializer.twig_extension.runtime_serializer" to "twig".
  • Inlined service "nelmio_api_doc.render_docs.html.asset" to "twig".
  • Inlined service "Omines\DataTablesBundle\Twig\DataTablesExtension" to "twig".
  • Inlined service "webpack_encore.twig_entry_files_extension" to "twig".
  • Inlined service "webpack_encore.twig_stimulus_extension" to "twig".
  • Inlined service "Vich\UploaderBundle\Twig\Extension\UploaderExtension" to "twig".
  • Inlined service "twig.extension.webprofiler" to "twig".
  • Inlined service "twig.app_variable" to "twig".
  • Inlined service "twig.runtime_loader" to "twig".
  • Inlined service "twig.missing_extension_suggestor" to "twig".
  • Inlined service "twig.missing_extension_suggestor" to "twig".
  • Inlined service "twig.missing_extension_suggestor" to "twig".
  • Inlined service "twig.configurator.environment" to "twig".
  • Inlined service ".service_locator.o9nGMXB.twig.template_cache_warmer" to "twig.template_cache_warmer".
  • Inlined service "twig.template_iterator" to "twig.template_cache_warmer".
  • Inlined service "fragment.handler" to "twig.runtime.httpkernel".
  • Inlined service "url_helper" to "twig.extension.httpfoundation".
  • Inlined service ".service_locator.pXvK0eZ" to "twig.runtime_loader".
  • Inlined service ".1_bool~dhAFgY0" to "twig.error_renderer.html".
  • Inlined service ".service_locator.0DpzJRH" to "webpack_encore.entrypoint_lookup_collection".
  • Inlined service ".1_ServiceLocator~8EK8ASw" to "webpack_encore.twig_entry_files_extension".
  • Inlined service "cache.webpack_encore.recorder_inner" to "cache.webpack_encore".
  • Inlined service "vich_uploader.metadata_driver.xml" to "vich_uploader.metadata_driver.chain".
  • Inlined service "vich_uploader.metadata_driver.annotation" to "vich_uploader.metadata_driver.chain".
  • Inlined service "vich_uploader.metadata_driver.yaml" to "vich_uploader.metadata_driver.chain".
  • Inlined service "vich_uploader.metadata_driver.chain" to "vich_uploader.metadata_factory".
  • Inlined service "vich_uploader.metadata.cache.file_cache" to "vich_uploader.metadata_factory".
  • Inlined service "vich_uploader.metadata_factory" to "vich_uploader.metadata_reader".
  • Inlined service "vich_uploader.current_date_time_helper" to "Vich\UploaderBundle\Naming\CurrentDateTimeDirectoryNamer".
  • Inlined service "slugger" to "Vich\UploaderBundle\Util\Transliterator".
  • Inlined service "vich_uploader.file_injector" to "vich_uploader.upload_handler".
  • Inlined service "Vich\UploaderBundle\Templating\Helper\UploaderHelper" to "Vich\UploaderBundle\Twig\Extension\UploaderExtension".
  • Inlined service ".1_NonceGenerator~l_9g7ff" to "web_profiler.csp.handler".
  • Inlined service ".2_HtmlDumper~l_9g7ff" to "twig.extension.webprofiler".
  • Inlined service "maker.maker.make_authenticator" to "maker.auto_command.make_auth".
  • Inlined service "maker.maker.make_command" to "maker.auto_command.make_command".
  • Inlined service "maker.maker.make_controller" to "maker.auto_command.make_controller".
  • Inlined service "maker.maker.make_crud" to "maker.auto_command.make_crud".
  • Inlined service "maker.maker.make_docker_database" to "maker.auto_command.make_docker_database".
  • Inlined service "maker.maker.make_entity" to "maker.auto_command.make_entity".
  • Inlined service "maker.maker.make_fixtures" to "maker.auto_command.make_fixtures".
  • Inlined service "maker.maker.make_form" to "maker.auto_command.make_form".
  • Inlined service "maker.maker.make_message" to "maker.auto_command.make_message".
  • Inlined service "maker.maker.make_messenger_middleware" to "maker.auto_command.make_messenger_middleware".
  • Inlined service "maker.maker.make_registration_form" to "maker.auto_command.make_registration_form".
  • Inlined service "maker.maker.make_reset_password" to "maker.auto_command.make_reset_password".
  • Inlined service "maker.maker.make_serializer_encoder" to "maker.auto_command.make_serializer_encoder".
  • Inlined service "maker.maker.make_serializer_normalizer" to "maker.auto_command.make_serializer_normalizer".
  • Inlined service "maker.maker.make_subscriber" to "maker.auto_command.make_subscriber".
  • Inlined service "maker.maker.make_twig_extension" to "maker.auto_command.make_twig_extension".
  • Inlined service "maker.maker.make_test" to "maker.auto_command.make_test".
  • Inlined service "maker.maker.make_validator" to "maker.auto_command.make_validator".
  • Inlined service "maker.maker.make_voter" to "maker.auto_command.make_voter".
  • Inlined service "maker.maker.make_user" to "maker.auto_command.make_user".
  • Inlined service "maker.maker.make_migration" to "maker.auto_command.make_migration".
  • Inlined service "debug.argument_resolver.request_attribute.inner" to "debug.argument_resolver.request_attribute".
  • Inlined service "debug.argument_resolver.request.inner" to "debug.argument_resolver.request".
  • Inlined service "debug.argument_resolver.session.inner" to "debug.argument_resolver.session".
  • Inlined service "debug.security.user_value_resolver.inner" to "debug.security.user_value_resolver".
  • Inlined service "debug.argument_resolver.service.inner" to "debug.argument_resolver.service".
  • Inlined service "debug.argument_resolver.default.inner" to "debug.argument_resolver.default".
  • Inlined service "debug.argument_resolver.variadic.inner" to "debug.argument_resolver.variadic".
  • Inlined service "debug.argument_resolver.not_tagged_controller.inner" to "debug.argument_resolver.not_tagged_controller".
  • Inlined service ".debug.http_client.inner" to ".debug.http_client".
  • Inlined service "security.access.authenticated_voter" to "debug.security.voter.security.access.authenticated_voter".
  • Inlined service "security.access.role_hierarchy_voter" to "debug.security.voter.security.access.role_hierarchy_voter".
  • Inlined service "security.access.expression_voter" to "debug.security.voter.security.access.expression_voter".
  • Inlined service "App\Security\Voters\ApplicationVoter" to "debug.security.voter.App\Security\Voters\ApplicationVoter".
  • Inlined service "App\Security\Voters\AttachmentVoter" to "debug.security.voter.App\Security\Voters\AttachmentVoter".
  • Inlined service "App\Security\Voters\BackofficeVoter" to "debug.security.voter.App\Security\Voters\BackofficeVoter".
  • Inlined service "App\Security\Voters\CalendarVoter" to "debug.security.voter.App\Security\Voters\CalendarVoter".
  • Inlined service "App\Security\Voters\DocumentVoter" to "debug.security.voter.App\Security\Voters\DocumentVoter".
  • Inlined service "App\Security\Voters\FolderVoter" to "debug.security.voter.App\Security\Voters\FolderVoter".
  • Inlined service "App\Security\Voters\MeetingVoter" to "debug.security.voter.App\Security\Voters\MeetingVoter".
  • Inlined service "App\Security\Voters\MessageVoter" to "debug.security.voter.App\Security\Voters\MessageVoter".
  • Inlined service "App\Security\Voters\SubscriberVoter" to "debug.security.voter.App\Security\Voters\SubscriberVoter".
  • Inlined service "App\Security\Voters\SubscriptionVoter" to "debug.security.voter.App\Security\Voters\SubscriptionVoter".
  • Inlined service "App\Security\Voters\UserVoter" to "debug.security.voter.App\Security\Voters\UserVoter".
  • Inlined service "fos_rest.serializer.form_error_handler.inner" to "fos_rest.serializer.form_error_handler".
  • Inlined service ".service_locator.XSes1R5" to ".service_locator.XSes1R5.translation.warmer".
  • Inlined service ".service_locator.n0p5GNi" to ".service_locator.n0p5GNi.router.default".
  • Inlined service ".service_locator.m90YCjy" to ".service_locator.m90YCjy.router.cache_warmer".
  • Inlined service ".service_locator.C2Thyvr" to ".service_locator.C2Thyvr.sensio_framework_extra.view.listener".
  • Inlined service ".service_locator.o9nGMXB" to ".service_locator.o9nGMXB.twig.template_cache_warmer".
  • Inlined service "monolog.logger.http_client" to ".debug.http_client.inner".
  • Inlined service "jms_serializer.handler_registry.service_locator" to "jms_serializer.traceable_handler_registry.inner".
  • Inlined service ".service_locator.9l.kp2V" to "console.command_loader".
  • Inlined service "cache.default_marshaller" to "cache.app.recorder_inner".
  • Inlined service ".service_locator.n0p5GNi.router.default" to "router".
  • Inlined service "monolog.logger.router" to "router".
  • Inlined service "fos_rest.serializer.jms" to "fos_rest.view_handler".
  • Inlined service "jms_serializer.metadata.doctrine_type_driver" to "jms_serializer.metadata_driver".
  • Inlined service "jms_serializer.deserialization_graph_navigator_factory" to "jms_serializer".
  • Inlined service "jms_serializer.serialization_graph_navigator_factory" to "jms_serializer".
  • Inlined service "jms_serializer.json_serialization_visitor" to "jms_serializer".
  • Inlined service "jms_serializer.xml_serialization_visitor" to "jms_serializer".
  • Inlined service "jms_serializer.json_deserialization_visitor" to "jms_serializer".
  • Inlined service "jms_serializer.xml_deserialization_visitor" to "jms_serializer".
  • Inlined service "lexik_jwt_authentication.jws_provider.lcobucci" to "lexik_jwt_authentication.encoder".
  • Inlined service "oneup_flysystem.s3_adapter_adapter" to "s3_filesystem".
  • Inlined service "oneup_flysystem.local_adapter_adapter" to "local_filesystem".
  • Inlined service "swiftmailer.mailer.default.transport.eventdispatcher" to "swiftmailer.transport".
  • Inlined service "debug.validator.inner" to "validator".
  • Inlined service "debug.event_dispatcher.inner" to "event_dispatcher".
  • Inlined service "monolog.logger.event" to "event_dispatcher".
  • Inlined service "App\Services\SchedulableActionRegistry" to "console.command.public_alias.App\Command\ScheduledActionCommand".
  • Inlined service "monolog.logger.profiler" to "profiler".
  • Inlined service "monolog.logger.profiler" to "profiler".
  • Inlined service "file_locator" to "routing.loader".
  • Inlined service "file_locator" to "routing.loader".
  • Inlined service "file_locator" to "routing.loader".
  • Inlined service "file_locator" to "routing.loader".
  • Inlined service "file_locator" to "routing.loader".
  • Inlined service "routing.loader.annotation" to "routing.loader".
  • Inlined service "file_locator" to "routing.loader".
  • Inlined service "routing.loader.annotation" to "routing.loader".
  • Inlined service "file_locator" to "routing.loader".
  • Inlined service "routing.loader.annotation" to "routing.loader".
  • Inlined service "twig.extension.assets" to "twig".
  • Inlined service "twig.extension.assets" to "twig".
  • Inlined service "vich_uploader.metadata.file_locator" to "vich_uploader.metadata_reader".
  • Inlined service "vich_uploader.metadata.file_locator" to "vich_uploader.metadata_reader".
  • Inlined service "jms_serializer.serialized_name_annotation_strategy" to "jms_serializer.metadata_driver".
  • Inlined service "jms_serializer.serialized_name_annotation_strategy" to "jms_serializer.metadata_driver".
  • Inlined service "jms_serializer.serialized_name_annotation_strategy" to "jms_serializer.metadata_driver".
  • Inlined service "jms_serializer.accessor_strategy.default" to "jms_serializer".
  • Inlined service "jms_serializer.accessor_strategy.default" to "jms_serializer".
  • Inlined service "jms_serializer.expression_evaluator" to "jms_serializer".
  • Inlined service "jms_serializer.expression_evaluator" to "jms_serializer".
  • Inlined service "jms_serializer.expression_evaluator" to "jms_serializer".
478
Symfony\Bundle\FrameworkBundle\DependencyInjection\Compiler\UnusedTagsPass
  • Tag "eight_points_guzzle.logger" was defined on service(s) "eight_points_guzzle.messages_logger", "eight_points_guzzle.protocollo_cct_logger", "eight_points_guzzle.mypay_logger", "eight_points_guzzle.giscom_logger", but was never used.
  • Tag "container.preload" was defined on service(s) "doctrine.orm.default_entity_manager", but was never used.
  • Tag "ocsdc.schedule_action_handler" was defined on service(s) "App\Services\DelayedGiscomAPIAdapterService", "App\Services\KafkaService", "App\Services\ModuloPdfBuilderService", "App\Services\WebhookService", but was never used.
  • Tag "ocsdc.protocollo.handler" was defined on service(s) "App\Protocollo\ByPraticaProtocolloHandler", but was never used.
4