Lines Matching refs:mutations
30 protected $mutations; variable in Sabre\\DAV\\PropPatch
57 * @param array $mutations A list of updates
59 function __construct(array $mutations) { argument
61 $this->mutations = $mutations;
92 … if (array_key_exists($propertyName, $this->mutations) && !isset($this->result[$propertyName])) {
187 foreach ($this->mutations as $propertyName => $propValue) {
207 foreach ($this->mutations as $propertyName => $propValue) {
228 foreach ($this->mutations as $propertyName => $value) {
278 $result = $callback($this->mutations[$propertyName]);
281 if (is_null($this->mutations[$propertyName])) {
314 $argument[$propertyName] = $this->mutations[$propertyName];
369 return $this->mutations;