I am encountering this error when trying to run a site using WAMP.
But it works fine on my LAMP VM.
The parent function has this signature:
public function get($table, $join = null, $column = null, $where = null)
{
And it is extended like so:
class DatabaseAccess extends Medoo
{
public function get($table, $columns, $where = null)
{
return parent::get($table, $columns, $where);
}
Is WAMP more strict with this or am I missing something obvious?