Show
Ignore:
Timestamp:
10/01/08 21:02:13 (3 months ago)
Author:
nowelium
Message:
 
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/php/misc/Hermit/src/Hermit/parameter/HermitSqlParameter.php

    r18954 r20387  
    66abstract class HermitSqlParameter { 
    77    public function match($matches){ 
     8        if(count($matches) < 4){ 
     9            throw new RuntimeException('sql comment was fail: ' . join(',', $matches)); 
     10        } 
    811        return $this->replace($matches[1], $matches[2], $matches[3]); 
    912    }