Development

- Fixed where method calling itself instead of setWhere.
- Added unit-tests for regex.
This commit is contained in:
Simon Sessingø
2017-01-19 18:40:47 +01:00
parent 7cc2652bcd
commit 523d49359b
2 changed files with 13 additions and 1 deletions
+1 -1
View File
@@ -402,7 +402,7 @@ abstract class Route implements IRoute
*/
public function where(array $options)
{
return $this->where($options);
return $this->setWhere($options);
}
/**