Completed
Push — develop ( 5124b9...d1ec5a )
by greg
02:24
created
src/PlaygroundGame/Entity/QuizAnswer.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -178,7 +178,6 @@
 block discarded – undo
178 178
     }
179 179
 
180 180
     /**
181
-     * @param string $hint
182 181
      */
183 182
     public function setJsonData($jsonData)
184 183
     {
Please login to merge, or discard this patch.
src/PlaygroundGame/Entity/QuizQuestion.php 1 patch
Doc Comments   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -271,7 +271,7 @@  discard block
 block discarded – undo
271 271
     }
272 272
 
273 273
     /**
274
-     * @return the unknown_type
274
+     * @return string unknown_type
275 275
      */
276 276
     public function getImage()
277 277
     {
@@ -307,7 +307,7 @@  discard block
 block discarded – undo
307 307
     }
308 308
 
309 309
     /**
310
-     * @return boolean unknown_type
310
+     * @return integer unknown_type
311 311
      */
312 312
     public function getAutoplay()
313 313
     {
@@ -351,7 +351,6 @@  discard block
 block discarded – undo
351 351
     }
352 352
 
353 353
     /**
354
-     * @param string $hint
355 354
      */
356 355
     public function setJsonData($jsonData)
357 356
     {
@@ -361,7 +360,7 @@  discard block
 block discarded – undo
361 360
     }
362 361
     
363 362
     /**
364
-     * @return boolean unknown_type
363
+     * @return integer unknown_type
365 364
      */
366 365
     public function getTimer()
367 366
     {
Please login to merge, or discard this patch.
src/PlaygroundGame/Entity/InstantWin.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
     }
127 127
 
128 128
     /**
129
-     * @return the unknown_type
129
+     * @return integer unknown_type
130 130
      */
131 131
     public function getOccurrenceNumber()
132 132
     {
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
         return $this;
144 144
     }
145 145
     /**
146
-     * @return the unknown_type
146
+     * @return integer unknown_type
147 147
      */
148 148
     public function getWinningOccurrenceNumber()
149 149
     {
Please login to merge, or discard this patch.
src/PlaygroundGame/Entity/PostVote.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -162,7 +162,7 @@
 block discarded – undo
162 162
     }
163 163
 
164 164
     /**
165
-     * @return bool
165
+     * @return integer
166 166
      */
167 167
     public function getModerationType()
168 168
     {
Please login to merge, or discard this patch.
src/PlaygroundGame/Module.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -285,7 +285,7 @@
 block discarded – undo
285 285
      * This method add the games to the cms categories of pages
286 286
      * not that satisfied neither
287 287
      *
288
-     * @param  EventManager $e
288
+     * @param  \Zend\EventManager\Event $e
289 289
      * @return array
290 290
      */
291 291
     public function populateCmsCategories(\Zend\EventManager\Event $e)
Please login to merge, or discard this patch.
src/PlaygroundGame/Entity/TradingCardCard.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
Please login to merge, or discard this patch.
src/PlaygroundGame/Entity/TradingCardModel.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -273,7 +273,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
src/PlaygroundGame/Form/Admin/TradingCardModel.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -186,7 +186,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
src/PlaygroundGame/Service/Mission.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace PlaygroundGame\Service;
4 4
 
5
-use Zend\ServiceManager\ServiceManager;
6 5
 use PlaygroundGame\Service\Game;
7 6
 use PlaygroundGame\Entity\MissionGameCondition as MissionGameConditionEntity;
8 7
 
Please login to merge, or discard this patch.