@@ -120,7 +120,7 @@ |
||
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) |
@@ -161,7 +161,7 @@ discard block |
||
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 |
||
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 |
@@ -17,7 +17,6 @@ |
||
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 */ |
@@ -48,7 +48,7 @@ |
||
48 | 48 | |
49 | 49 | /** |
50 | 50 | * Check access. |
51 | - * @param Organization $org |
|
51 | + * @param \rhosocial\organization\Organization $org |
|
52 | 52 | * @param string|integer $id User ID. If access checking passed, it will be re-assigned with the User model. |
53 | 53 | * @param User $user |
54 | 54 | * @return boolean |
@@ -13,7 +13,6 @@ |
||
13 | 13 | namespace rhosocial\organization\web\organization\controllers; |
14 | 14 | |
15 | 15 | use rhosocial\organization\exceptions\NumberOfOrganizationsExceededException; |
16 | -use rhosocial\user\UserProfileSearch; |
|
17 | 16 | use Yii; |
18 | 17 | use yii\filters\AccessControl; |
19 | 18 | use yii\filters\VerbFilter; |
@@ -252,7 +252,7 @@ discard block |
||
252 | 252 | |
253 | 253 | /** |
254 | 254 | * Get subordinate limit query. |
255 | - * @return null|BaseBlameableQuery |
|
255 | + * @return null|\yii\db\ActiveQuery |
|
256 | 256 | */ |
257 | 257 | public function getSubordinateLimit() |
258 | 258 | { |
@@ -264,7 +264,7 @@ discard block |
||
264 | 264 | |
265 | 265 | /** |
266 | 266 | * Get member limit query. |
267 | - * @return null|BaseBlameableQuery |
|
267 | + * @return null|\yii\db\ActiveQuery |
|
268 | 268 | */ |
269 | 269 | public function getMemberLimit() |
270 | 270 | { |
@@ -573,7 +573,7 @@ discard block |
||
573 | 573 | |
574 | 574 | /** |
575 | 575 | * Add administrator. |
576 | - * @param User|integer|string $user User instance, or its GUID or ID. |
|
576 | + * @param User $user User instance, or its GUID or ID. |
|
577 | 577 | * @return boolean |
578 | 578 | * @throws \Exception |
579 | 579 | * @throws IntegrityException |
@@ -25,7 +25,6 @@ |
||
25 | 25 | { |
26 | 26 | /** |
27 | 27 | * |
28 | - * @param string $orgOnly |
|
29 | 28 | * @return string rendering result. |
30 | 29 | */ |
31 | 30 | public function run() |
@@ -49,7 +49,7 @@ |
||
49 | 49 | |
50 | 50 | /** |
51 | 51 | * Check access. |
52 | - * @param $org |
|
52 | + * @param \rhosocial\organization\Organization $org |
|
53 | 53 | * @param $user |
54 | 54 | * @return bool |
55 | 55 | * @throws UnauthorizedManageMemberException |
@@ -18,7 +18,6 @@ |
||
18 | 18 | use rhosocial\organization\web\organization\Module; |
19 | 19 | use Yii; |
20 | 20 | use yii\base\Action; |
21 | -use yii\web\BadRequestHttpException; |
|
22 | 21 | |
23 | 22 | /** |
24 | 23 | * Class UpdateMemberAction |
@@ -12,12 +12,10 @@ |
||
12 | 12 | |
13 | 13 | use rhosocial\organization\widgets\OrganizationProfileModalWidget; |
14 | 14 | use rhosocial\organization\Organization; |
15 | -use yii\bootstrap\Modal; |
|
16 | 15 | use yii\data\ActiveDataProvider; |
17 | 16 | use yii\grid\DataColumn; |
18 | 17 | use yii\grid\GridView; |
19 | 18 | use yii\grid\SerialColumn; |
20 | -use yii\helpers\Html; |
|
21 | 19 | use yii\web\View; |
22 | 20 | |
23 | 21 | /* @var $dataProvider ActiveDataProvider */ |