Hello, community! We are trying to configure the ClickHouse plugin, but we are encountering the following error: ``` adminer | Unable to load plugin file "clickhouse" because it defines multiple classes. ``` Here’s the relevant part of our Docker Compose configuration: ```yaml adminer: image: adminer container_name: adminer env_file: - .env environment: - ADMINER_DESIGN=hever - ADMINER_PLUGINS=clickhouse restart: always ports: - 8080:8080 volumes: - ./adminer/clickhouse.php:/var/www/html/plugins/clickhouse.php ``` We would appreciate any assistance in resolving this issue!