Lines Matching refs:propertyName
46 * @param string $propertyName
50 function handle($propertyName, $valueOrCallBack) { argument
58 $this->result[$propertyName] = [200, $value];
69 * @param string $propertyName
74 function set($propertyName, $value, $status = null) { argument
79 $this->result[$propertyName] = [$status, $value];
86 * @param string $propertyName
89 function get($propertyName) { argument
91 return isset($this->result[$propertyName]) ? $this->result[$propertyName][1] : null;
101 * @param string $propertyName
104 function getStatus($propertyName) { argument
106 return isset($this->result[$propertyName]) ? $this->result[$propertyName][0] : 404;
119 foreach ($this->result as $propertyName => $stuff) {
121 $result[] = $propertyName;