This repository was archived by the owner on Feb 4, 2023. It is now read-only.

Description
In PropertyAccessor line 623 for MultiselectColumn when adding actions, in the demo
calls this method:
$object->{$access[self::ACCESS_NAME]}($value);
but in version 1.0.3 this method is called:
$this->writeCollection($zval, $property, $value, $access[self::ACCESS_ADDER], $access[self::ACCESS_REMOVER]);
This results into the setAttributes method of Action instead of MultiSelectAction being called.
P.S. Unless the remove action was meant fix another bug, added features should be reserved for minor versions.