src/Controller/DefaultController.php line 15
<?phpnamespace App\Controller;use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;use Symfony\Component\HttpFoundation\Request;use Symfony\Contracts\Translation\TranslatorInterface;use Symfony\Component\Routing\Annotation\Route;use Sensio\Bundle\FrameworkExtraBundle\Configuration\Security;use Symfony\Component\HttpFoundation\Response;class DefaultController extends AbstractController{public function index(){return new Response('<html><body>Microservices APP</body></html>');}}