Lines Matching refs:propertyName

83         foreach ((array)$properties as $propertyName) {
85 … if (array_key_exists($propertyName, $this->mutations) && !isset($this->result[$propertyName])) {
87 $usedProperties[] = $propertyName;
89 $this->result[$propertyName] = 202;
124 foreach ($properties as $propertyName) {
126 $this->result[$propertyName] = 202;
145 foreach ((array)$properties as $propertyName) {
146 $this->result[$propertyName] = $resultCode;
180 foreach ($this->mutations as $propertyName => $propValue) {
181 if (!isset($this->result[$propertyName])) {
182 $remaining[] = $propertyName;
200 foreach ($this->mutations as $propertyName => $propValue) {
201 if (!isset($this->result[$propertyName])) {
202 $remaining[$propertyName] = $propValue;
221 foreach ($this->mutations as $propertyName => $value) {
223 if (!isset($this->result[$propertyName])) {
225 $this->result[$propertyName] = 403;
249 foreach ($this->result as $propertyName => $status) {
252 $this->result[$propertyName] = 424;
265 * @param string $propertyName
269 private function doCallBackSingleProp($propertyName, callable $callback) { argument
271 $result = $callback($this->mutations[$propertyName]);
274 if (is_null($this->mutations[$propertyName])) {
289 $this->result[$propertyName] = $result;
306 foreach ($propertyList as $propertyName) {
307 $argument[$propertyName] = $this->mutations[$propertyName];
313 foreach ($propertyList as $propertyName) {
314 if (!isset($result[$propertyName])) {
317 $resultCode = $result[$propertyName];
322 $this->result[$propertyName] = $resultCode;
328 foreach ($argument as $propertyName => $propertyValue) {
329 $this->result[$propertyName] = is_null($propertyValue) ? 204 : 200;
335 foreach ($propertyList as $propertyName) {
336 $this->result[$propertyName] = 403;