mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 08:16:12 +01:00
e469041db7
The `@var` annotations where left where it is not possible yet to replace them in PHP 7.4. Fixes #550 Co-authored-by: lina.wolf <lwolf@w-commerce.de>
35 lines
857 B
PHP
35 lines
857 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace TTN\Tea\Controller;
|
|
|
|
use Psr\Http\Message\ResponseInterface;
|
|
use TTN\Tea\Domain\Model\Product\Tea;
|
|
use TTN\Tea\Domain\Repository\Product\TeaRepository;
|
|
use TYPO3\CMS\Extbase\Mvc\Controller\ActionController;
|
|
|
|
/**
|
|
* Controller for the main "Tea" FE plugin.
|
|
*/
|
|
class TeaController extends ActionController
|
|
{
|
|
private TeaRepository $teaRepository;
|
|
|
|
public function injectTeaRepository(TeaRepository $teaRepository): void
|
|
{
|
|
$this->teaRepository = $teaRepository;
|
|
}
|
|
|
|
public function indexAction(): ResponseInterface
|
|
{
|
|
$this->view->assign('teas', $this->teaRepository->findAll());
|
|
return $this->htmlResponse();
|
|
}
|
|
|
|
public function showAction(Tea $tea): ResponseInterface
|
|
{
|
|
$this->view->assign('tea', $tea);
|
|
return $this->htmlResponse();
|
|
}
|
|
}
|