@@ -2,7 +2,6 @@ discard block |
||
| 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; |
@@ -12,7 +11,6 @@ discard block |
||
| 12 | 11 | use Zend\InputFilter\InputFilterAwareInterface; |
| 13 | 12 | use Zend\InputFilter\InputFilterInterface; |
| 14 | 13 | use Gedmo\Mapping\Annotation as Gedmo; |
| 15 | -use Gedmo\Translatable\Translatable; |
|
| 16 | 14 | |
| 17 | 15 | /** |
| 18 | 16 | * @ORM\Entity @HasLifecycleCallbacks |
@@ -273,7 +273,7 @@ discard block |
||
| 273 | 273 | /** |
| 274 | 274 | * Gets the value of points. |
| 275 | 275 | * |
| 276 | - * @return mixed |
|
| 276 | + * @return integer |
|
| 277 | 277 | */ |
| 278 | 278 | public function getPoints() |
| 279 | 279 | { |
@@ -297,7 +297,7 @@ discard block |
||
| 297 | 297 | /** |
| 298 | 298 | * Gets the value of distribution. |
| 299 | 299 | * |
| 300 | - * @return mixed |
|
| 300 | + * @return integer |
|
| 301 | 301 | */ |
| 302 | 302 | public function getDistribution() |
| 303 | 303 | { |
@@ -186,7 +186,7 @@ |
||
| 186 | 186 | * Set service manager instance |
| 187 | 187 | * |
| 188 | 188 | * @param ServiceManager $serviceManager |
| 189 | - * @return InstantWinOccurrence |
|
| 189 | + * @return TradingCardModel |
|
| 190 | 190 | */ |
| 191 | 191 | public function setServiceManager(ServiceManager $serviceManager) |
| 192 | 192 | { |
@@ -3,7 +3,6 @@ |
||
| 3 | 3 | namespace PlaygroundGame\Service; |
| 4 | 4 | |
| 5 | 5 | use Zend\ServiceManager\ServiceManagerAwareInterface; |
| 6 | -use PlaygroundGame\Mapper\GameInterface as GameMapperInterface; |
|
| 7 | 6 | use Zend\Stdlib\ErrorHandler; |
| 8 | 7 | |
| 9 | 8 | class TradingCard extends Game implements ServiceManagerAwareInterface |