<?php declare(strict_types = 1);namespace NexCRM\GoPayBundle;use NexCRM\GoPayBundle\DependencyInjection\GoPayExtension;use Symfony\Component\DependencyInjection\Extension\Extension;use Symfony\Component\HttpKernel\Bundle\Bundle;class GoPayBundle extends Bundle{ public function getContainerExtension(): Extension { return new GoPayExtension(); }}