In line https://github.com/phly/PhlyRestfully/blob/master/src/PhlyRestfully/ResourceController.php#L606 there is an unexpected if clause checking <code>$id</code> and <code>isMethodAllowedForCollection</code>. <code>PUT</code> methods with an <code>$id</code> are mapped to this </code>update</code> method and it is never used for updating collections... All <code>PUT</code> methods without <code>$id</code> will map to <code>replaceList</code> according to https://github.com/zendframework/zf2/blob/master/library/Zend/Mvc/Controller/AbstractRestfulController.php#L417 I don't understand the reason for this if clause.
In line https://github.com/phly/PhlyRestfully/blob/master/src/PhlyRestfully/ResourceController.php#L606 there is an unexpected if clause checking
$idandisMethodAllowedForCollection.PUTmethods with an$idare mapped to this update method and it is never used for updating collections...All
PUTmethods without$idwill map toreplaceListaccording to https://github.com/zendframework/zf2/blob/master/library/Zend/Mvc/Controller/AbstractRestfulController.php#L417I don't understand the reason for this if clause.