@@ -92,7 +92,7 @@ |
||
| 92 | 92 | return preg_replace_callback($pattern, function($m) use ($binds){ |
| 93 | 93 | if(isset($binds[$m[1]])){ // If it exists in our array |
| 94 | 94 | return $binds[$m[1]]; // Then replace it from our array |
| 95 | - }else{ |
|
| 95 | + } else{ |
|
| 96 | 96 | return $m[0]; // Otherwise return the whole match (basically we won't change it) |
| 97 | 97 | } |
| 98 | 98 | }, $sql); |