Lines Matching refs:propertyName

90         foreach ((array)$properties as $propertyName) {
92 … if (array_key_exists($propertyName, $this->mutations) && !isset($this->result[$propertyName])) {
94 $usedProperties[] = $propertyName;
96 $this->result[$propertyName] = 202;
131 foreach ($properties as $propertyName) {
133 $this->result[$propertyName] = 202;
152 foreach ((array)$properties as $propertyName) {
153 $this->result[$propertyName] = $resultCode;
187 foreach ($this->mutations as $propertyName => $propValue) {
188 if (!isset($this->result[$propertyName])) {
189 $remaining[] = $propertyName;
207 foreach ($this->mutations as $propertyName => $propValue) {
208 if (!isset($this->result[$propertyName])) {
209 $remaining[$propertyName] = $propValue;
228 foreach ($this->mutations as $propertyName => $value) {
230 if (!isset($this->result[$propertyName])) {
232 $this->result[$propertyName] = 403;
256 foreach ($this->result as $propertyName => $status) {
259 $this->result[$propertyName] = 424;
272 * @param string $propertyName
276 private function doCallBackSingleProp($propertyName, callable $callback) { argument
278 $result = $callback($this->mutations[$propertyName]);
281 if (is_null($this->mutations[$propertyName])) {
296 $this->result[$propertyName] = $result;
313 foreach ($propertyList as $propertyName) {
314 $argument[$propertyName] = $this->mutations[$propertyName];
320 foreach ($propertyList as $propertyName) {
321 if (!isset($result[$propertyName])) {
324 $resultCode = $result[$propertyName];
329 $this->result[$propertyName] = $resultCode;
335 foreach ($argument as $propertyName => $propertyValue) {
336 $this->result[$propertyName] = is_null($propertyValue) ? 204 : 200;
342 foreach ($propertyList as $propertyName) {
343 $this->result[$propertyName] = 403;