- Timestamp:
- 10/07/08 20:34:25 (3 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
lang/php/misc/Hermit/src/Hermit/parameter/HermitSqlParameterClassHash.php
r18954 r20924 12 12 foreach($value as $index => $obj){ 13 13 foreach($this->bindKeys as $index => $key){ 14 $method = $this->reflector->getMethod('get' . ucfirst($key)); 15 $stmt->bindValue(':' . $key, $method->invoke($obj)); 14 if($obj instanceof HermitParam){ 15 $stmt->bindValue(':' . $key, $obj->get($key)); 16 } else { 17 $method = $this->reflector->getMethod('get' . ucfirst($key)); 18 $stmt->bindValue(':' . $key, $method->invoke($obj)); 19 } 16 20 } 17 21 }
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)