Skip to content

Commit 66296ac

Browse files
authored
Removed type hinting because of older PHP versions.
1 parent 1ea0974 commit 66296ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CacheKey.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ protected function getColumnClauses(array $where) : string
6969
return "-{$where["boolean"]}_{$where["first"]}_{$where["operator"]}_{$where["second"]}";
7070
}
7171

72-
protected function getCurrentBinding(string $type, mixed $bindingFallback = null): mixed
72+
protected function getCurrentBinding(string $type, $bindingFallback = null)
7373
{
7474
return data_get($this->query->bindings, "{$type}.{$this->currentBinding}", $bindingFallback);
7575
}

0 commit comments

Comments
 (0)