mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-20 01:36:14 +02:00

[BUGFIX] Fix types in @var and @param.

This commit is contained in:
Oliver Klee 2014-12-11 14:16:47 +01:00
parent 31dd57d52c
commit 7696a7b97e
5 changed files with 7 additions and 7 deletions

View file

@ -56,7 +56,7 @@ class TestimonialController extends ActionController {
*
* @param \TYPO3\CMS\Extbase\Mvc\View\ViewInterface $view
*
* @return view
* @return void
*/
public function setView(ViewInterface $view) {
$this->view = $view;

View file

@ -102,7 +102,7 @@ class TeaBeverage extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity {
}
/**
* @param \TYPO3\CMS\Extbase\Persistence\ObjectStorage<\OliverKlee\Tea\Domain\Model\Addition> $additions
* @param \TYPO3\CMS\Extbase\Persistence\ObjectStorage $additions
*
* @return void
*/
@ -140,7 +140,7 @@ class TeaBeverage extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity {
}
/**
* @param \TYPO3\CMS\Extbase\Persistence\ObjectStorage<\OliverKlee\Tea\Domain\Model\Testimonial> $testimonials
* @param \TYPO3\CMS\Extbase\Persistence\ObjectStorage $testimonials
*
* @return void
*/

View file

@ -31,12 +31,12 @@ class TestimonialControllerTest extends \TYPO3\CMS\Core\Tests\UnitTestCase {
protected $subject = NULL;
/**
* @var ViewInterface
* @var ViewInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $view = NULL;
/**
* @var TestimonialRepository
* @var TestimonialRepository|\PHPUnit_Framework_MockObject_MockObject
*/
protected $testimonialRepository = NULL;

View file

@ -26,7 +26,7 @@ class TeaBeverageRepositoryTest extends \TYPO3\CMS\Core\Tests\UnitTestCase {
protected $subject;
/**
* @var \TYPO3\CMS\Extbase\Object\ObjectManagerInterface|PHPUnit_Framework_MockObject_MockObject
* @var \TYPO3\CMS\Extbase\Object\ObjectManagerInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $objectManager = NULL;

View file

@ -26,7 +26,7 @@ class TestimonialRepositoryTest extends \TYPO3\CMS\Core\Tests\UnitTestCase {
protected $subject;
/**
* @var \TYPO3\CMS\Extbase\Object\ObjectManagerInterface|PHPUnit_Framework_MockObject_MockObject
* @var \TYPO3\CMS\Extbase\Object\ObjectManagerInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $objectManager = NULL;