1 | <?php |
||
26 | class JoinOrganizationForm extends Model |
||
27 | { |
||
28 | /** |
||
29 | * @var Organization |
||
30 | */ |
||
31 | public $organization; |
||
32 | |||
33 | /** |
||
34 | * @var string |
||
35 | */ |
||
36 | public $password; |
||
37 | |||
38 | /** |
||
39 | * @inheritdoc |
||
40 | * @throws InvalidConfigException |
||
41 | */ |
||
42 | public function init() |
||
48 | |||
49 | /** |
||
50 | * @inheritdoc |
||
51 | */ |
||
52 | public function attributeLabels() |
||
58 | |||
59 | /** |
||
60 | * @inheritdoc |
||
61 | */ |
||
62 | public function rules() |
||
76 | |||
77 | /** |
||
78 | * @param $attribute |
||
79 | * @param $params |
||
80 | * @param $validator |
||
81 | */ |
||
82 | public function validatePassword($attribute, $params, $validator) |
||
89 | } |
||
90 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.