Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 7, 2019 17:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/7d30b30452ed0ffe301a4f8a6e3fc7dc to your computer and use it in GitHub Desktop.
Save parzibyte/7d30b30452ed0ffe301a4f8a6e3fc7dc to your computer and use it in GitHub Desktop.
<?php
namespace App\Controller;
use Symfony\Component\HttpFoundation\Response;
# El nombre de la clase debe coincidir con el nombre del archivo .php
class HolaController
{
public function hola()
{
return new Response(
'<html><body>Hola mundo desde <strong>Symfony</strong><br>parzibyte.me</body></html>'
);
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment