| 1 | <?php |
||
| 10 | class RedisSetMemberForm implements ItemFormInterface |
||
| 11 | { |
||
| 12 | private $connection; |
||
| 13 | |||
| 14 | private $key; |
||
| 15 | |||
| 16 | private $member; |
||
| 17 | |||
| 18 | public function __construct(RedisProxy $connection, $key, $member) |
||
| 24 | |||
| 25 | public function addFieldsToForm(Form $form) |
||
| 26 | { |
||
| 27 | $form->addText('member', 'redis.member_form.member.label') |
||
| 28 | ->setRequired('redis.member_form.member.required'); |
||
|
|
|||
| 29 | |||
| 30 | if ($this->member) { |
||
| 31 | $form->setDefaults([ |
||
| 32 | 'member' => $this->member, |
||
| 33 | ]); |
||
| 34 | } |
||
| 35 | } |
||
| 36 | |||
| 37 | public function submit(Form $form, ArrayHash $values) |
||
| 45 | } |
||
| 46 |
It seems like the type of the argument is not accepted by the function/method which you are calling.
In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.
We suggest to add an explicit type cast like in the following example: