There was an error while loading. Please reload this page.
This code
$fields = [ 'id' => ['type' => 'INT'], 'value' => ['type' => 'VARCHAR']]; $fields = array( 'id' => array('type' => 'INT'), 'value' => array('type' => 'VARCHAR'));
is fixed like this (notice the comma at the end of each array, causing a syntax error)
$fields = [ 'id' => ['type' => 'INT'], 'value' => ['type' => 'VARCHAR'], ];, $fields = array( 'id' => array('type' => 'INT'), 'value' => array('type' => 'VARCHAR'), );,