mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 03:16:12 +01:00
[BUGFIX] Fix types in @var and @param.
This commit is contained in:
parent
31dd57d52c
commit
7696a7b97e
5 changed files with 7 additions and 7 deletions
|
@ -56,7 +56,7 @@ class TestimonialController extends ActionController {
|
||||||
*
|
*
|
||||||
* @param \TYPO3\CMS\Extbase\Mvc\View\ViewInterface $view
|
* @param \TYPO3\CMS\Extbase\Mvc\View\ViewInterface $view
|
||||||
*
|
*
|
||||||
* @return view
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function setView(ViewInterface $view) {
|
public function setView(ViewInterface $view) {
|
||||||
$this->view = $view;
|
$this->view = $view;
|
||||||
|
|
|
@ -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
|
* @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
|
* @return void
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -31,12 +31,12 @@ class TestimonialControllerTest extends \TYPO3\CMS\Core\Tests\UnitTestCase {
|
||||||
protected $subject = NULL;
|
protected $subject = NULL;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var ViewInterface
|
* @var ViewInterface|\PHPUnit_Framework_MockObject_MockObject
|
||||||
*/
|
*/
|
||||||
protected $view = NULL;
|
protected $view = NULL;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var TestimonialRepository
|
* @var TestimonialRepository|\PHPUnit_Framework_MockObject_MockObject
|
||||||
*/
|
*/
|
||||||
protected $testimonialRepository = NULL;
|
protected $testimonialRepository = NULL;
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@ class TeaBeverageRepositoryTest extends \TYPO3\CMS\Core\Tests\UnitTestCase {
|
||||||
protected $subject;
|
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;
|
protected $objectManager = NULL;
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@ class TestimonialRepositoryTest extends \TYPO3\CMS\Core\Tests\UnitTestCase {
|
||||||
protected $subject;
|
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;
|
protected $objectManager = NULL;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue