Completed
Push — master ( ca3e5a...8325fc )
by vistart
04:16
created
Member.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@
 block discarded – undo
120 120
 
121 121
     /**
122 122
      * Set Organization.
123
-     * @param BaseOrganization $organization
123
+     * @param Organization $organization
124 124
      * @return boolean
125 125
      */
126 126
     public function setOrganization($organization)
Please login to merge, or discard this patch.
UserOrganizationTrait.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
      * @param string $name
162 162
      * @param Organization $parent
163 163
      * @param string $nickname
164
-     * @param string $gravatar_type
164
+     * @param integer $gravatar_type
165 165
      * @param string $gravatar
166 166
      * @param string $timezone
167 167
      * @param string $description
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
      * @param string $name
178 178
      * @param Organization $parent
179 179
      * @param string $nickname
180
-     * @param string $gravatar_type
180
+     * @param integer $gravatar_type
181 181
      * @param string $gravatar
182 182
      * @param string $timezone
183 183
      * @param string $description
Please login to merge, or discard this patch.
console/controllers/OrganizationController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -213,7 +213,7 @@
 block discarded – undo
213 213
      * Remove administrator
214 214
      * @param Organization|string|integer $organization
215 215
      * @param User|string|integer $user
216
-     * @param boolean $keepMember
216
+     * @param string|boolean $keepMember
217 217
      */
218 218
     public function actionRemoveAdministrator($organization, $user, $keepMember = "yes")
219 219
     {
Please login to merge, or discard this patch.
web/user/views/organization/view-members.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,6 @@
 block discarded – undo
17 17
 use yii\grid\GridView;
18 18
 use yii\grid\DataColumn;
19 19
 use yii\helpers\Html;
20
-use yii\helpers\Url;
21 20
 use yii\web\View;
22 21
 use yii\widgets\Pjax;
23 22
 /* @var $this View */
Please login to merge, or discard this patch.
exceptions/UnauthorizedManageMemberException.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,6 @@
 block discarded – undo
25 25
 {
26 26
     /**
27 27
      * Constructor.
28
-     * @param string $message error message
29 28
      * @param int $code error code
30 29
      * @param \Exception $previous The previous exception used for the exception chaining.
31 30
      */
Please login to merge, or discard this patch.
Organization.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -272,7 +272,7 @@
 block discarded – undo
272 272
 
273 273
     /**
274 274
      * Remove administrator.
275
-     * @param Member|User $member
275
+     * @param User $member
276 276
      * @param boolean $keepMember Keep member after administrator being revoked.
277 277
      * @return boolean
278 278
      * @throws IntegrityException
Please login to merge, or discard this patch.