Lines Matching refs:attribute
83 * @param string $attribute
86 public function __get($attribute) argument
90 if (strtolower($keyAttr) == strtolower($attribute)) {
91 if ($this->info[0][strtolower($attribute)]['count'] == 1) {
92 return $this->info[0][strtolower($attribute)][0];
96 foreach ($this->info[0][strtolower($attribute)] as $key => $value) {
114 * @param string $attribute
118 abstract public function __set($attribute, $value); argument
123 * @param string $attribute
126 public function __isset($attribute) { argument
129 if (strtolower($keyAttr) == strtolower($attribute)) {