Merge branch '3.6' into 4.0

This commit is contained in:
Daniel Hensby 2018-03-14 14:08:41 +00:00
commit d28a1b5cfc
No known key found for this signature in database
GPG Key ID: B00D1E9767F0B06E

View File

@ -205,6 +205,10 @@ class ManyManyList extends RelationList
* Add an item to this many_many relationship
* Does so by adding an entry to the joinTable.
*
* Can also be used to update an already existing joinTable entry:
*
* $manyManyList->add($recordID,["ExtraField" => "value"]);
*
* @throws InvalidArgumentException
* @throws Exception
*