There is a bug on line 135 because the set mutator doesn't have to return the assigned value so the attribute will be set to null instead of the correct value.
However all the logic of the fill method can be removed simply assinging the value to the key and let the _set magic method do the work
There is a bug on line 135 because the set mutator doesn't have to return the assigned value so the attribute will be set to null instead of the correct value. However all the logic of the
fill
method can be removed simply assinging the value to the key and let the_set
magic method do the work