Completed
Push — master ( 654668...fadc4a )
by Olof
02:09
created
src/User/UserController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@
 block discarded – undo
121 121
      *
122 122
      * @param string $email The email address
123 123
      * @param boole $img True to return a complete IMG tag False for just the URL
124
-     * @param string $size Size in pixels, defaults to 80px [ 1 - 2048 ]
124
+     * @param integer $size Size in pixels, defaults to 80px [ 1 - 2048 ]
125 125
      * @param string $default Default imageset to use [ 404 | mm | identicon | monsterid | wavatar ]
126 126
      * @param string $rating Maximum rating (inclusive) [ g | pg | r | x ]
127 127
      * @param array $atts Optional, additional key/value attributes to include in the IMG tag
Please login to merge, or discard this patch.
src/User/HTMLForm/EditUserForm.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,7 +21,8 @@  discard block
 block discarded – undo
21 21
     /**
22 22
      * Constructor injects with DI container.
23 23
      *
24
-     * @param Anax\DI\DIInterface $di a service container
24
+     * @param DIInterface $di a service container
25
+     * @param integer $id
25 26
      */
26 27
     public function __construct(DIInterface $di, $id)
27 28
     {
@@ -104,7 +105,7 @@  discard block
 block discarded – undo
104 105
      * Callback for submit-button which should return true if it could
105 106
      * carry out its work and false if something failed.
106 107
      *
107
-     * @return boolean true if okey, false if something went wrong.
108
+     * @return false|null true if okey, false if something went wrong.
108 109
      */
109 110
     public function callbackSubmit()
110 111
     {
Please login to merge, or discard this patch.
src/User/HTMLForm/ProfileForm.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
     /**
15 15
      * Constructor injects with DI container.
16 16
      *
17
-     * @param Anax\DI\DIInterface $di a service container
17
+     * @param DIInterface $di a service container
18 18
      */
19 19
     public function __construct(DIInterface $di)
20 20
     {
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
      * Callback for submit-button which should return true if it could
90 90
      * carry out its work and false if something failed.
91 91
      *
92
-     * @return boolean true if okey, false if something went wrong.
92
+     * @return false|null true if okey, false if something went wrong.
93 93
      */
94 94
     public function callbackSubmit()
95 95
     {
Please login to merge, or discard this patch.