mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-20 02:56:13 +02:00

[FOLLOWUP] Fix copy'n'paste error in view class in annotation (#20)

[ci skip]
This commit is contained in:
Oliver Klee 2018-05-26 21:13:02 +02:00 committed by GitHub
parent 436a10b9d6
commit dd1ea7868d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,7 +8,6 @@ use OliverKlee\Tea\Domain\Repository\Product\TeaRepository;
use Prophecy\Prophecy\ObjectProphecy; use Prophecy\Prophecy\ObjectProphecy;
use Prophecy\Prophecy\ProphecySubjectInterface; use Prophecy\Prophecy\ProphecySubjectInterface;
use TYPO3\CMS\Extbase\Mvc\Controller\ActionController; use TYPO3\CMS\Extbase\Mvc\Controller\ActionController;
use TYPO3\CMS\Extbase\Mvc\View\JsonView;
use TYPO3\CMS\Extbase\Persistence\QueryResultInterface; use TYPO3\CMS\Extbase\Persistence\QueryResultInterface;
use TYPO3\CMS\Fluid\View\TemplateView; use TYPO3\CMS\Fluid\View\TemplateView;
@ -25,12 +24,12 @@ class TeaControllerTest extends UnitTestCase
private $subject = null; private $subject = null;
/** /**
* @var JsonView|ObjectProphecy * @var TemplateView|ObjectProphecy
*/ */
private $viewProphecy = null; private $viewProphecy = null;
/** /**
* @var JsonView|ProphecySubjectInterface * @var TemplateView|ProphecySubjectInterface
*/ */
private $view = null; private $view = null;