@@ -730,7 +730,7 @@ discard block |
||
730 | 730 | } |
731 | 731 | |
732 | 732 | /** |
733 | - * @return boolean $emailShare |
|
733 | + * @return integer $emailShare |
|
734 | 734 | */ |
735 | 735 | public function getEmailShare() |
736 | 736 | { |
@@ -746,7 +746,7 @@ discard block |
||
746 | 746 | } |
747 | 747 | |
748 | 748 | /** |
749 | - * @return boolean $fbShare |
|
749 | + * @return integer $fbShare |
|
750 | 750 | */ |
751 | 751 | public function getFbShare() |
752 | 752 | { |
@@ -762,7 +762,7 @@ discard block |
||
762 | 762 | } |
763 | 763 | |
764 | 764 | /** |
765 | - * @return boolean $twShare |
|
765 | + * @return integer $twShare |
|
766 | 766 | */ |
767 | 767 | public function getTwShare() |
768 | 768 | { |
@@ -1382,7 +1382,7 @@ discard block |
||
1382 | 1382 | |
1383 | 1383 | /** |
1384 | 1384 | * |
1385 | - * @return the $costToPlay |
|
1385 | + * @return integer $costToPlay |
|
1386 | 1386 | */ |
1387 | 1387 | public function getCostToPlay() |
1388 | 1388 | { |
@@ -1569,7 +1569,7 @@ discard block |
||
1569 | 1569 | |
1570 | 1570 | /** |
1571 | 1571 | * |
1572 | - * @return string the Facebook fbPageTabPosition |
|
1572 | + * @return integer the Facebook fbPageTabPosition |
|
1573 | 1573 | */ |
1574 | 1574 | public function getFbPageTabPosition() |
1575 | 1575 | { |
@@ -1589,7 +1589,7 @@ discard block |
||
1589 | 1589 | |
1590 | 1590 | /** |
1591 | 1591 | * |
1592 | - * @return the string |
|
1592 | + * @return string string |
|
1593 | 1593 | */ |
1594 | 1594 | public function getEmailShareSubject() |
1595 | 1595 | { |
@@ -1629,7 +1629,7 @@ discard block |
||
1629 | 1629 | |
1630 | 1630 | /** |
1631 | 1631 | * |
1632 | - * @return the string |
|
1632 | + * @return string string |
|
1633 | 1633 | */ |
1634 | 1634 | public function getFbShareDescription() |
1635 | 1635 | { |
@@ -150,7 +150,7 @@ discard block |
||
150 | 150 | } |
151 | 151 | |
152 | 152 | /** |
153 | - * @return the unknown_type |
|
153 | + * @return integer unknown_type |
|
154 | 154 | */ |
155 | 155 | public function getVoteActive() |
156 | 156 | { |
@@ -186,7 +186,7 @@ discard block |
||
186 | 186 | } |
187 | 187 | |
188 | 188 | /** |
189 | - * @return bool |
|
189 | + * @return integer |
|
190 | 190 | */ |
191 | 191 | public function getModerationType() |
192 | 192 | { |
@@ -21,7 +21,6 @@ |
||
21 | 21 | * __invoke |
22 | 22 | * |
23 | 23 | * @access public |
24 | - * @param array $options array of options |
|
25 | 24 | * @return string |
26 | 25 | */ |
27 | 26 | public function __invoke($dateStart = null, $dateEnd = null, $classType = null, $cost = null, $order = null, $dir = 'DESC') |
@@ -3,7 +3,6 @@ |
||
3 | 3 | namespace PlaygroundGame\View\Helper; |
4 | 4 | |
5 | 5 | use Zend\View\Helper\AbstractHelper; |
6 | -use Interop\Container\ContainerInterface; |
|
7 | 6 | |
8 | 7 | class NextGameWidget extends AbstractHelper |
9 | 8 | { |
@@ -8,9 +8,7 @@ |
||
8 | 8 | { |
9 | 9 | /** |
10 | 10 | * @param ContainerInterface $container |
11 | - * @param string $requestedName |
|
12 | - * @param array|null $options |
|
13 | - * @return mixed |
|
11 | + * @return NextGameWidget |
|
14 | 12 | */ |
15 | 13 | public function __invoke(ContainerInterface $container) |
16 | 14 | { |
@@ -247,7 +247,7 @@ discard block |
||
247 | 247 | } |
248 | 248 | |
249 | 249 | /** |
250 | - * @param field_type $geoloc |
|
250 | + * @param string $geoloc |
|
251 | 251 | */ |
252 | 252 | public function setGeoloc($geoloc) |
253 | 253 | { |
@@ -325,7 +325,7 @@ discard block |
||
325 | 325 | } |
326 | 326 | |
327 | 327 | /** |
328 | - * @return boolean active |
|
328 | + * @return integer active |
|
329 | 329 | */ |
330 | 330 | public function getActive() |
331 | 331 | { |
@@ -187,7 +187,7 @@ |
||
187 | 187 | * |
188 | 188 | * @param ServiceManager $serviceManager |
189 | 189 | * |
190 | - * @return InstantWinOccurrence |
|
190 | + * @return TradingCardModel |
|
191 | 191 | */ |
192 | 192 | public function setServiceManager(ServiceManager $serviceManager) |
193 | 193 | { |
@@ -4,11 +4,7 @@ |
||
4 | 4 | use Doctrine\Common\Collections\ArrayCollection; |
5 | 5 | use Doctrine\ORM\Mapping as ORM; |
6 | 6 | use Doctrine\ORM\Mapping\HasLifecycleCallbacks; |
7 | -use Doctrine\ORM\Mapping\PrePersist; |
|
8 | -use Doctrine\ORM\Mapping\PreUpdate; |
|
9 | - |
|
10 | 7 | use PlaygroundGame\Entity\Game; |
11 | - |
|
12 | 8 | use Zend\InputFilter\InputFilter; |
13 | 9 | use Zend\InputFilter\InputFilterAwareInterface; |
14 | 10 | use Zend\InputFilter\InputFilterInterface; |
@@ -7,10 +7,8 @@ |
||
7 | 7 | use Doctrine\ORM\Mapping\HasLifecycleCallbacks; |
8 | 8 | use Doctrine\ORM\Mapping\PrePersist; |
9 | 9 | use Doctrine\ORM\Mapping\PreUpdate; |
10 | - |
|
11 | 10 | use Gedmo\Mapping\Annotation as Gedmo; |
12 | 11 | use Gedmo\Translatable\Translatable; |
13 | - |
|
14 | 12 | use Zend\InputFilter\Factory as InputFactory; |
15 | 13 | use Zend\InputFilter\InputFilter; |
16 | 14 | use Zend\InputFilter\InputFilterAwareInterface; |
@@ -111,7 +111,7 @@ |
||
111 | 111 | } |
112 | 112 | |
113 | 113 | /** |
114 | - * @param PlaygroundGame\Entity\Entry $entry |
|
114 | + * @param boolean $entry |
|
115 | 115 | */ |
116 | 116 | public function setEntry($entry) |
117 | 117 | { |
@@ -2,7 +2,6 @@ |
||
2 | 2 | |
3 | 3 | namespace PlaygroundGame\Entity; |
4 | 4 | |
5 | -use Doctrine\Common\Collections\ArrayCollection; |
|
6 | 5 | use Doctrine\ORM\Mapping as ORM; |
7 | 6 | use Doctrine\ORM\Mapping\HasLifecycleCallbacks; |
8 | 7 | use Doctrine\ORM\Mapping\PrePersist; |