The previous commit
4c1e702f96403bdc84b6900027d1be61ea601321 expanded the
signature of `fillWithSql()` to accept a third argument, but it wasn't
consistent about whether the third argument was optional or required.
This makes it consistently optional (default `[]`).
* An array of SQLParams to be used with the $sql
* @return bool
*/
- public function fillWithSql($cacheKey, $sql, $sqlParams);
+ public function fillWithSql($cacheKey, $sql, $sqlParams = []);
/**
* Store the contents of an array in the cache.