You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
672 B
29 lines
672 B
<?php
|
|
|
|
namespace App\Controller;
|
|
|
|
use App\Repository\HeroRepository;
|
|
use FOS\RestBundle\Controller\Annotations as Rest;
|
|
use FOS\RestBundle\Controller\AbstractFOSRestController;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
|
|
class HeroController extends AbstractFOSRestController
|
|
{
|
|
protected $heroRepository;
|
|
|
|
public function __construct(HeroRepository $heroRepository)
|
|
{
|
|
$this->heroRepository = $heroRepository;
|
|
}
|
|
|
|
/**
|
|
* @Rest\Route("api/heroes")
|
|
* @Rest\View()
|
|
*/
|
|
public function cgetAction()
|
|
{
|
|
$heroes = $this->heroRepository->findAll();
|
|
return $this->view($heroes, Response::HTTP_OK);
|
|
}
|
|
}
|