Lines Matching refs:result
38 protected $result = []; variable in Sabre\\DAV\\PropPatch
92 … if (array_key_exists($propertyName, $this->mutations) && !isset($this->result[$propertyName])) {
96 $this->result[$propertyName] = 202;
133 $this->result[$propertyName] = 202;
153 $this->result[$propertyName] = $resultCode;
188 if (!isset($this->result[$propertyName])) {
208 if (!isset($this->result[$propertyName])) {
230 if (!isset($this->result[$propertyName])) {
232 $this->result[$propertyName] = 403;
256 foreach ($this->result as $propertyName => $status) {
259 $this->result[$propertyName] = 424;
278 $result = $callback($this->mutations[$propertyName]);
279 if (is_bool($result)) {
280 if ($result) {
283 $result = 204;
286 $result = 200;
290 $result = 403;
293 if (!is_int($result)) {
296 $this->result[$propertyName] = $result;
297 if ($result >= 400) {
317 $result = $callback($argument);
319 if (is_array($result)) {
321 if (!isset($result[$propertyName])) {
324 $resultCode = $result[$propertyName];
329 $this->result[$propertyName] = $resultCode;
332 } elseif ($result === true) {
336 $this->result[$propertyName] = is_null($propertyValue) ? 204 : 200;
339 } elseif ($result === false) {
343 $this->result[$propertyName] = 403;
358 return $this->result;