Completed
Push — develop ( 1e7bd2...15a723 )
by greg
03:25
created
src/PlaygroundGame/Entity/QuizQuestion.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -274,7 +274,7 @@
 block discarded – undo
274 274
     }
275 275
 
276 276
     /**
277
-     * @param unknown_type $image
277
+     * @param string $image
278 278
      */
279 279
     public function setImage($image)
280 280
     {
Please login to merge, or discard this patch.
src/PlaygroundGame/Service/PostVote.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -41,6 +41,9 @@
 block discarded – undo
41 41
         return $media_url;
42 42
     }
43 43
 
44
+    /**
45
+     * @param boolean $entry
46
+     */
44 47
     public function checkPost($entry)
45 48
     {
46 49
         $post = $this->getPostVotePostMapper()->findOneBy(array('entry' => $entry));
Please login to merge, or discard this patch.
src/PlaygroundGame/Service/Game.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,6 @@  discard block
 block discarded – undo
53 53
      * This service is ready for all types of games
54 54
      *
55 55
      * @param array $data
56
-     * @param string $entity
57 56
      * @param string $formClass
58 57
      * @return \PlaygroundGame\Entity\Game
59 58
      */
@@ -1786,6 +1785,9 @@  discard block
 block discarded – undo
1786 1785
         return $a;
1787 1786
     }
1788 1787
 
1788
+    /**
1789
+     * @param \Zend\InputFilter\InputFilter $inputFilter
1790
+     */
1789 1791
     public function decorate($element, $attr, $inputFilter)
1790 1792
     {
1791 1793
         $element->setAttributes(
Please login to merge, or discard this patch.
src/PlaygroundGame/Mapper/Invitation.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,6 @@
 block discarded – undo
36 36
     }
37 37
 
38 38
     /**
39
-     * @param string $id
40 39
      * @return \Heineken\Entity\Invitation
41 40
      */
42 41
     public function findByGame($game)
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,9 +3,7 @@
 block discarded – undo
3 3
 
4 4
 use Doctrine\ORM\EntityManager;
5 5
 use PlaygroundGame\Options\ModuleOptions;
6
-use PlaygroundUser\Entity\EmailVerification as Model;
7 6
 use Zend\Stdlib\Hydrator\HydratorInterface;
8
-use ZfcBase\EventManager\EventProvider;
9 7
 
10 8
 class Invitation
11 9
 {
Please login to merge, or discard this patch.